Package net.authorize.api.contract.v1
Class ContactDetailType
- java.lang.Object
-
- net.authorize.api.contract.v1.ContactDetailType
-
public class ContactDetailType extends Object
Java class for ContactDetailType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ContactDetailType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="email" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <maxLength value="255"/> </restriction> </simpleType> </element> <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> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ContactDetailType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetEmail()Gets the value of the email property.StringgetFirstName()Gets the value of the firstName property.StringgetLastName()Gets the value of the lastName property.voidsetEmail(String value)Sets the value of the email property.voidsetFirstName(String value)Sets the value of the firstName property.voidsetLastName(String value)Sets the value of the lastName property.
-
-
-
Method Detail
-
getEmail
public String getEmail()
Gets the value of the email property.- Returns:
- possible object is
String
-
setEmail
public void setEmail(String value)
Sets the value of the email property.- Parameters:
value- allowed object isString
-
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
-
-