net.authorize.api.contract.v1.CreateCustomerProfileResponse 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.XmlElement;
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}ANetApiResponse">
* <sequence>
* <element name="customerProfileId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString" minOccurs="0"/>
* <element name="customerPaymentProfileIdList" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfNumericString"/>
* <element name="customerShippingAddressIdList" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfNumericString"/>
* <element name="validationDirectResponseList" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ArrayOfString"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"customerProfileId",
"customerPaymentProfileIdList",
"customerShippingAddressIdList",
"validationDirectResponseList"
})
@XmlRootElement(name = "createCustomerProfileResponse")
public class CreateCustomerProfileResponse
extends ANetApiResponse
{
protected String customerProfileId;
@XmlElement(required = true)
protected ArrayOfNumericString customerPaymentProfileIdList;
@XmlElement(required = true)
protected ArrayOfNumericString customerShippingAddressIdList;
@XmlElement(required = true)
protected ArrayOfString validationDirectResponseList;
/**
* 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 customerPaymentProfileIdList property.
*
* @return
* possible object is
* {@link ArrayOfNumericString }
*
*/
public ArrayOfNumericString getCustomerPaymentProfileIdList() {
return customerPaymentProfileIdList;
}
/**
* Sets the value of the customerPaymentProfileIdList property.
*
* @param value
* allowed object is
* {@link ArrayOfNumericString }
*
*/
public void setCustomerPaymentProfileIdList(ArrayOfNumericString value) {
this.customerPaymentProfileIdList = value;
}
/**
* Gets the value of the customerShippingAddressIdList property.
*
* @return
* possible object is
* {@link ArrayOfNumericString }
*
*/
public ArrayOfNumericString getCustomerShippingAddressIdList() {
return customerShippingAddressIdList;
}
/**
* Sets the value of the customerShippingAddressIdList property.
*
* @param value
* allowed object is
* {@link ArrayOfNumericString }
*
*/
public void setCustomerShippingAddressIdList(ArrayOfNumericString value) {
this.customerShippingAddressIdList = value;
}
/**
* Gets the value of the validationDirectResponseList property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getValidationDirectResponseList() {
return validationDirectResponseList;
}
/**
* Sets the value of the validationDirectResponseList property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setValidationDirectResponseList(ArrayOfString value) {
this.validationDirectResponseList = value;
}
}