net.authorize.api.contract.v1.GetCustomerProfileRequest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
//
package net.authorize.api.contract.v1;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiRequest">
* <sequence>
* <element name="customerProfileId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString" minOccurs="0"/>
* <element name="merchantCustomerId" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* <element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="unmaskExpirationDate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="includeIssuerInfo" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"customerProfileId",
"merchantCustomerId",
"email",
"unmaskExpirationDate",
"includeIssuerInfo"
})
@XmlRootElement(name = "getCustomerProfileRequest")
public class GetCustomerProfileRequest
extends ANetApiRequest
{
protected String customerProfileId;
protected String merchantCustomerId;
protected String email;
protected Boolean unmaskExpirationDate;
protected Boolean includeIssuerInfo;
/**
* Gets the value of the customerProfileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerProfileId() {
return customerProfileId;
}
/**
* Sets the value of the customerProfileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerProfileId(String value) {
this.customerProfileId = value;
}
/**
* Gets the value of the merchantCustomerId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMerchantCustomerId() {
return merchantCustomerId;
}
/**
* Sets the value of the merchantCustomerId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMerchantCustomerId(String value) {
this.merchantCustomerId = value;
}
/**
* Gets the value of the email property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEmail() {
return email;
}
/**
* Sets the value of the email property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEmail(String value) {
this.email = value;
}
/**
* Gets the value of the unmaskExpirationDate property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isUnmaskExpirationDate() {
return unmaskExpirationDate;
}
/**
* Sets the value of the unmaskExpirationDate property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setUnmaskExpirationDate(Boolean value) {
this.unmaskExpirationDate = value;
}
/**
* Gets the value of the includeIssuerInfo property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIncludeIssuerInfo() {
return includeIssuerInfo;
}
/**
* Sets the value of the includeIssuerInfo property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIncludeIssuerInfo(Boolean value) {
this.includeIssuerInfo = value;
}
}