net.authorize.api.contract.v1.DecryptPaymentDataResponse 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}ANetApiResponse">
* <sequence>
* <element name="shippingInfo" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType" minOccurs="0"/>
* <element name="billingInfo" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}customerAddressType" minOccurs="0"/>
* <element name="cardInfo" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardMaskedType" minOccurs="0"/>
* <element name="paymentDetails" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}paymentDetails" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"shippingInfo",
"billingInfo",
"cardInfo",
"paymentDetails"
})
@XmlRootElement(name = "decryptPaymentDataResponse")
public class DecryptPaymentDataResponse
extends ANetApiResponse
{
protected CustomerAddressType shippingInfo;
protected CustomerAddressType billingInfo;
protected CreditCardMaskedType cardInfo;
protected PaymentDetails paymentDetails;
/**
* Gets the value of the shippingInfo property.
*
* @return
* possible object is
* {@link CustomerAddressType }
*
*/
public CustomerAddressType getShippingInfo() {
return shippingInfo;
}
/**
* Sets the value of the shippingInfo property.
*
* @param value
* allowed object is
* {@link CustomerAddressType }
*
*/
public void setShippingInfo(CustomerAddressType value) {
this.shippingInfo = value;
}
/**
* Gets the value of the billingInfo property.
*
* @return
* possible object is
* {@link CustomerAddressType }
*
*/
public CustomerAddressType getBillingInfo() {
return billingInfo;
}
/**
* Sets the value of the billingInfo property.
*
* @param value
* allowed object is
* {@link CustomerAddressType }
*
*/
public void setBillingInfo(CustomerAddressType value) {
this.billingInfo = value;
}
/**
* Gets the value of the cardInfo property.
*
* @return
* possible object is
* {@link CreditCardMaskedType }
*
*/
public CreditCardMaskedType getCardInfo() {
return cardInfo;
}
/**
* Sets the value of the cardInfo property.
*
* @param value
* allowed object is
* {@link CreditCardMaskedType }
*
*/
public void setCardInfo(CreditCardMaskedType value) {
this.cardInfo = value;
}
/**
* Gets the value of the paymentDetails property.
*
* @return
* possible object is
* {@link PaymentDetails }
*
*/
public PaymentDetails getPaymentDetails() {
return paymentDetails;
}
/**
* Sets the value of the paymentDetails property.
*
* @param value
* allowed object is
* {@link PaymentDetails }
*
*/
public void setPaymentDetails(PaymentDetails value) {
this.paymentDetails = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy