net.authorize.api.contract.v1.ANetApiRequest Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.05.26 at 11:27:57 AM PDT
//
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 ANetApiRequest complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ANetApiRequest">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="merchantAuthentication" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}merchantAuthenticationType"/>
* <element name="refId" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <maxLength value="20"/>
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ANetApiRequest", propOrder = {
"merchantAuthentication",
"refId"
})
@XmlSeeAlso({
UpdateCustomerPaymentProfileRequest.class,
GetTransactionDetailsRequest.class,
MobileDeviceLoginRequest.class,
GetBatchStatisticsRequest.class,
ARBCreateSubscriptionRequest.class,
LogoutRequest.class,
DeleteCustomerShippingAddressRequest.class,
GetTransactionListRequest.class,
AuthenticateTestRequest.class,
GetCustomerShippingAddressRequest.class,
DeleteCustomerPaymentProfileRequest.class,
CreateCustomerProfileRequest.class,
MobileDeviceRegistrationRequest.class,
UpdateCustomerShippingAddressRequest.class,
DeleteCustomerProfileRequest.class,
ARBGetSubscriptionStatusRequest.class,
GetCustomerProfileRequest.class,
DecryptPaymentDataRequest.class,
CreateTransactionRequest.class,
ARBUpdateSubscriptionRequest.class,
GetUnsettledTransactionListRequest.class,
CreateCustomerShippingAddressRequest.class,
GetCustomerProfileIdsRequest.class,
UpdateCustomerProfileRequest.class,
GetSettledBatchListRequest.class,
SendCustomerTransactionReceiptRequest.class,
CreateCustomerProfileFromTransactionRequest.class,
ARBGetSubscriptionListRequest.class,
CreateCustomerPaymentProfileRequest.class,
CreateCustomerProfileTransactionRequest.class,
GetCustomerPaymentProfileRequest.class,
GetHostedProfilePageRequest.class,
UpdateSplitTenderGroupRequest.class,
ValidateCustomerPaymentProfileRequest.class,
ARBCancelSubscriptionRequest.class
})
public class ANetApiRequest implements java.io.Serializable {
@XmlElement(required = true)
protected MerchantAuthenticationType merchantAuthentication;
protected String refId;
/**
* Gets the value of the merchantAuthentication property.
*
* @return
* possible object is
* {@link MerchantAuthenticationType }
*
*/
public MerchantAuthenticationType getMerchantAuthentication() {
return merchantAuthentication;
}
/**
* Sets the value of the merchantAuthentication property.
*
* @param value
* allowed object is
* {@link MerchantAuthenticationType }
*
*/
public void setMerchantAuthentication(MerchantAuthenticationType value) {
this.merchantAuthentication = value;
}
/**
* 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;
}
}