net.authorize.api.contract.v1.ValidateCustomerPaymentProfileRequest 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.XmlSchemaType;
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"/>
* <element name="customerPaymentProfileId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString"/>
* <element name="customerShippingAddressId" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}numericString" minOccurs="0"/>
* <element name="cardCode" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}cardCode" minOccurs="0"/>
* <element name="validationMode" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}validationModeEnum"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"customerProfileId",
"customerPaymentProfileId",
"customerShippingAddressId",
"cardCode",
"validationMode"
})
@XmlRootElement(name = "validateCustomerPaymentProfileRequest")
public class ValidateCustomerPaymentProfileRequest
extends ANetApiRequest
{
@XmlElement(required = true)
protected String customerProfileId;
@XmlElement(required = true)
protected String customerPaymentProfileId;
protected String customerShippingAddressId;
protected String cardCode;
@XmlElement(required = true)
@XmlSchemaType(name = "string")
protected ValidationModeEnum validationMode;
/**
* 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 customerPaymentProfileId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerPaymentProfileId() {
return customerPaymentProfileId;
}
/**
* Sets the value of the customerPaymentProfileId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerPaymentProfileId(String value) {
this.customerPaymentProfileId = value;
}
/**
* Gets the value of the customerShippingAddressId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCustomerShippingAddressId() {
return customerShippingAddressId;
}
/**
* Sets the value of the customerShippingAddressId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCustomerShippingAddressId(String value) {
this.customerShippingAddressId = value;
}
/**
* Gets the value of the cardCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCardCode() {
return cardCode;
}
/**
* Sets the value of the cardCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCardCode(String value) {
this.cardCode = value;
}
/**
* Gets the value of the validationMode property.
*
* @return
* possible object is
* {@link ValidationModeEnum }
*
*/
public ValidationModeEnum getValidationMode() {
return validationMode;
}
/**
* Sets the value of the validationMode property.
*
* @param value
* allowed object is
* {@link ValidationModeEnum }
*
*/
public void setValidationMode(ValidationModeEnum value) {
this.validationMode = value;
}
}