Package net.authorize.api.contract.v1
Class CustomerPaymentProfileBaseType
- java.lang.Object
-
- net.authorize.api.contract.v1.CustomerPaymentProfileBaseType
-
- Direct Known Subclasses:
CustomerPaymentProfileMaskedType,CustomerPaymentProfileType
public class CustomerPaymentProfileBaseType extends Object
Java class for customerPaymentProfileBaseType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="customerPaymentProfileBaseType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="customerType" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerTypeEnum" minOccurs="0"/> <element name="billTo" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CustomerAddressTypebillToprotected CustomerTypeEnumcustomerType
-
Constructor Summary
Constructors Constructor Description CustomerPaymentProfileBaseType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomerAddressTypegetBillTo()Gets the value of the billTo property.CustomerTypeEnumgetCustomerType()Gets the value of the customerType property.voidsetBillTo(CustomerAddressType value)Sets the value of the billTo property.voidsetCustomerType(CustomerTypeEnum value)Sets the value of the customerType property.
-
-
-
Field Detail
-
customerType
protected CustomerTypeEnum customerType
-
billTo
protected CustomerAddressType billTo
-
-
Method Detail
-
getCustomerType
public CustomerTypeEnum getCustomerType()
Gets the value of the customerType property.- Returns:
- possible object is
CustomerTypeEnum
-
setCustomerType
public void setCustomerType(CustomerTypeEnum value)
Sets the value of the customerType property.- Parameters:
value- allowed object isCustomerTypeEnum
-
getBillTo
public CustomerAddressType getBillTo()
Gets the value of the billTo property.- Returns:
- possible object is
CustomerAddressType
-
setBillTo
public void setBillTo(CustomerAddressType value)
Sets the value of the billTo property.- Parameters:
value- allowed object isCustomerAddressType
-
-