Class CustomerProfileType
- java.lang.Object
-
- net.authorize.api.contract.v1.CustomerProfileBaseType
-
- net.authorize.api.contract.v1.CustomerProfileType
-
public class CustomerProfileType extends CustomerProfileBaseType
Java class for customerProfileType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="customerProfileType"> <complexContent> <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileBaseType"> <sequence> <element name="paymentProfiles" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerPaymentProfileType" maxOccurs="unbounded" minOccurs="0"/> <element name="shipToList" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType" maxOccurs="unbounded" minOccurs="0"/> <element name="profileType" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerProfileTypeEnum" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<CustomerPaymentProfileType>paymentProfilesprotected CustomerProfileTypeEnumprofileTypeprotected List<CustomerAddressType>shipToList-
Fields inherited from class net.authorize.api.contract.v1.CustomerProfileBaseType
description, email, merchantCustomerId
-
-
Constructor Summary
Constructors Constructor Description CustomerProfileType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CustomerPaymentProfileType>getPaymentProfiles()Gets the value of the paymentProfiles property.CustomerProfileTypeEnumgetProfileType()Gets the value of the profileType property.List<CustomerAddressType>getShipToList()Gets the value of the shipToList property.voidsetProfileType(CustomerProfileTypeEnum value)Sets the value of the profileType property.-
Methods inherited from class net.authorize.api.contract.v1.CustomerProfileBaseType
getDescription, getEmail, getMerchantCustomerId, setDescription, setEmail, setMerchantCustomerId
-
-
-
-
Field Detail
-
paymentProfiles
protected List<CustomerPaymentProfileType> paymentProfiles
-
shipToList
protected List<CustomerAddressType> shipToList
-
profileType
protected CustomerProfileTypeEnum profileType
-
-
Method Detail
-
getPaymentProfiles
public List<CustomerPaymentProfileType> getPaymentProfiles()
Gets the value of the paymentProfiles property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the paymentProfiles property.For example, to add a new item, do as follows:
getPaymentProfiles().add(newItem);Objects of the following type(s) are allowed in the list
CustomerPaymentProfileType
-
getShipToList
public List<CustomerAddressType> getShipToList()
Gets the value of the shipToList property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the shipToList property.For example, to add a new item, do as follows:
getShipToList().add(newItem);Objects of the following type(s) are allowed in the list
CustomerAddressType
-
getProfileType
public CustomerProfileTypeEnum getProfileType()
Gets the value of the profileType property.- Returns:
- possible object is
CustomerProfileTypeEnum
-
setProfileType
public void setProfileType(CustomerProfileTypeEnum value)
Sets the value of the profileType property.- Parameters:
value- allowed object isCustomerProfileTypeEnum
-
-