Package net.authorize.api.contract.v1
Class CustomerAddressType
- java.lang.Object
-
- net.authorize.api.contract.v1.NameAndAddressType
-
- net.authorize.api.contract.v1.CustomerAddressType
-
- Direct Known Subclasses:
CustomerAddressExType
public class CustomerAddressType extends NameAndAddressType
Java class for customerAddressType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="customerAddressType"> <complexContent> <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}nameAndAddressType"> <sequence> <element name="phoneNumber" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="25"/> </restriction> </simpleType> </element> <element name="faxNumber" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="25"/> </restriction> </simpleType> </element> <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description CustomerAddressType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEmail()Gets the value of the email property.StringgetFaxNumber()Gets the value of the faxNumber property.StringgetPhoneNumber()Gets the value of the phoneNumber property.voidsetEmail(String value)Sets the value of the email property.voidsetFaxNumber(String value)Sets the value of the faxNumber property.voidsetPhoneNumber(String value)Sets the value of the phoneNumber property.-
Methods inherited from class net.authorize.api.contract.v1.NameAndAddressType
getAddress, getCity, getCompany, getCountry, getFirstName, getLastName, getState, getZip, setAddress, setCity, setCompany, setCountry, setFirstName, setLastName, setState, setZip
-
-
-
-
Method Detail
-
getPhoneNumber
public String getPhoneNumber()
Gets the value of the phoneNumber property.- Returns:
- possible object is
String
-
setPhoneNumber
public void setPhoneNumber(String value)
Sets the value of the phoneNumber property.- Parameters:
value- allowed object isString
-
getFaxNumber
public String getFaxNumber()
Gets the value of the faxNumber property.- Returns:
- possible object is
String
-
setFaxNumber
public void setFaxNumber(String value)
Sets the value of the faxNumber property.- Parameters:
value- allowed object isString
-
getEmail
public String getEmail()
Gets the value of the email property.- Returns:
- possible object is
String
-
-