Package net.authorize.api.contract.v1
Class NameAndAddressType
- java.lang.Object
-
- net.authorize.api.contract.v1.NameAndAddressType
-
- Direct Known Subclasses:
CustomerAddressType
public class NameAndAddressType extends Object
Java class for nameAndAddressType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="nameAndAddressType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="firstName" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="50"/> </restriction> </simpleType> </element> <element name="lastName" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="50"/> </restriction> </simpleType> </element> <element name="company" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="50"/> </restriction> </simpleType> </element> <element name="address" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="60"/> </restriction> </simpleType> </element> <element name="city" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="40"/> </restriction> </simpleType> </element> <element name="state" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="40"/> </restriction> </simpleType> </element> <element name="zip" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="20"/> </restriction> </simpleType> </element> <element name="country" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="60"/> </restriction> </simpleType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description NameAndAddressType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetAddress()Gets the value of the address property.StringgetCity()Gets the value of the city property.StringgetCompany()Gets the value of the company property.StringgetCountry()Gets the value of the country property.StringgetFirstName()Gets the value of the firstName property.StringgetLastName()Gets the value of the lastName property.StringgetState()Gets the value of the state property.StringgetZip()Gets the value of the zip property.voidsetAddress(String value)Sets the value of the address property.voidsetCity(String value)Sets the value of the city property.voidsetCompany(String value)Sets the value of the company property.voidsetCountry(String value)Sets the value of the country property.voidsetFirstName(String value)Sets the value of the firstName property.voidsetLastName(String value)Sets the value of the lastName property.voidsetState(String value)Sets the value of the state property.voidsetZip(String value)Sets the value of the zip property.
-
-
-
Method Detail
-
getFirstName
public String getFirstName()
Gets the value of the firstName property.- Returns:
- possible object is
String
-
setFirstName
public void setFirstName(String value)
Sets the value of the firstName property.- Parameters:
value- allowed object isString
-
getLastName
public String getLastName()
Gets the value of the lastName property.- Returns:
- possible object is
String
-
setLastName
public void setLastName(String value)
Sets the value of the lastName property.- Parameters:
value- allowed object isString
-
getCompany
public String getCompany()
Gets the value of the company property.- Returns:
- possible object is
String
-
setCompany
public void setCompany(String value)
Sets the value of the company property.- Parameters:
value- allowed object isString
-
getAddress
public String getAddress()
Gets the value of the address property.- Returns:
- possible object is
String
-
setAddress
public void setAddress(String value)
Sets the value of the address property.- Parameters:
value- allowed object isString
-
getCity
public String getCity()
Gets the value of the city property.- Returns:
- possible object is
String
-
setCity
public void setCity(String value)
Sets the value of the city property.- Parameters:
value- allowed object isString
-
getState
public String getState()
Gets the value of the state property.- Returns:
- possible object is
String
-
setState
public void setState(String value)
Sets the value of the state property.- Parameters:
value- allowed object isString
-
getZip
public String getZip()
Gets the value of the zip property.- Returns:
- possible object is
String
-
setZip
public void setZip(String value)
Sets the value of the zip property.- Parameters:
value- allowed object isString
-
getCountry
public String getCountry()
Gets the value of the country property.- Returns:
- possible object is
String
-
-