net.authorize.api.contract.v1.ANetApiResponse 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.11.14 at 11:09:15 AM 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for ANetApiResponse complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ANetApiResponse">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="refId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <sequence>
* <element name="messages" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}messagesType"/>
* </sequence>
* <element name="sessionToken" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ANetApiResponse", propOrder = {
"refId",
"messages",
"sessionToken"
})
@XmlSeeAlso({
GetCustomerPaymentProfileNonceResponse.class,
UpdateHeldTransactionResponse.class,
ValidateCustomerPaymentProfileResponse.class,
GetUnsettledTransactionListResponse.class,
GetTransactionListResponse.class,
GetHostedProfilePageResponse.class,
SendCustomerTransactionReceiptResponse.class,
UpdateCustomerShippingAddressResponse.class,
ARBGetSubscriptionResponse.class,
GetCustomerProfileIdsResponse.class,
MobileDeviceLoginResponse.class,
DeleteCustomerPaymentProfileResponse.class,
UpdateCustomerPaymentProfileResponse.class,
ARBCancelSubscriptionResponse.class,
AuthenticateTestResponse.class,
SecurePaymentContainerResponse.class,
ARBCreateSubscriptionResponse.class,
UpdateMerchantDetailsResponse.class,
GetTransactionDetailsResponse.class,
LogoutResponse.class,
GetCustomerPaymentProfileResponse.class,
CreateCustomerPaymentProfileResponse.class,
GetMerchantDetailsResponse.class,
UpdateSplitTenderGroupResponse.class,
DecryptPaymentDataResponse.class,
GetAUJobDetailsResponse.class,
GetAUJobSummaryResponse.class,
GetBatchStatisticsResponse.class,
GetCustomerPaymentProfileListResponse.class,
CreateTransactionResponse.class,
CreateCustomerProfileTransactionResponse.class,
ARBUpdateSubscriptionResponse.class,
IsAliveResponse.class,
GetHostedPaymentPageResponse.class,
ARBGetSubscriptionStatusResponse.class,
DeleteCustomerProfileResponse.class,
UpdateCustomerProfileResponse.class,
GetCustomerShippingAddressResponse.class,
CreateCustomerShippingAddressResponse.class,
GetSettledBatchListResponse.class,
DeleteCustomerShippingAddressResponse.class,
ARBGetSubscriptionListResponse.class,
CreateCustomerProfileResponse.class,
MobileDeviceRegistrationResponse.class,
GetCustomerProfileResponse.class
})
public class ANetApiResponse implements java.io.Serializable {
protected String refId;
@XmlElement(required = true)
protected MessagesType messages;
protected String sessionToken;
/**
* Gets the value of the refId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRefId() {
return refId;
}
/**
* Sets the value of the refId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRefId(String value) {
this.refId = value;
}
/**
* Gets the value of the messages property.
*
* @return
* possible object is
* {@link MessagesType }
*
*/
public MessagesType getMessages() {
return messages;
}
/**
* Sets the value of the messages property.
*
* @param value
* allowed object is
* {@link MessagesType }
*
*/
public void setMessages(MessagesType value) {
this.messages = value;
}
/**
* Gets the value of the sessionToken property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionToken() {
return sessionToken;
}
/**
* Sets the value of the sessionToken property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionToken(String value) {
this.sessionToken = value;
}
}