All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.authorize.api.contract.v1.ANetApiResponse Maven / Gradle / Ivy

Go to download

Authorize.Net SDK includes standard payments, recurring billing, and customer profiles.

There is a newer version: 3.0.0
Show newest version
//
// 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: 2016.11.22 at 06:00:08 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.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({ 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, ARBCreateSubscriptionResponse.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy