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

net.authorize.api.contract.v1.GetTransactionDetailsResponse 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: 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.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="transaction" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}transactionDetailsType"/>
 *         <element name="clientId" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="30"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *         <element name="transrefId" minOccurs="0">
 *           <simpleType>
 *             <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               <maxLength value="20"/>
 *             </restriction>
 *           </simpleType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "transaction", "clientId", "transrefId" }) @XmlRootElement(name = "getTransactionDetailsResponse") public class GetTransactionDetailsResponse extends ANetApiResponse { @XmlElement(required = true) protected TransactionDetailsType transaction; protected String clientId; protected String transrefId; /** * Gets the value of the transaction property. * * @return * possible object is * {@link TransactionDetailsType } * */ public TransactionDetailsType getTransaction() { return transaction; } /** * Sets the value of the transaction property. * * @param value * allowed object is * {@link TransactionDetailsType } * */ public void setTransaction(TransactionDetailsType value) { this.transaction = value; } /** * Gets the value of the clientId property. * * @return * possible object is * {@link String } * */ public String getClientId() { return clientId; } /** * Sets the value of the clientId property. * * @param value * allowed object is * {@link String } * */ public void setClientId(String value) { this.clientId = value; } /** * Gets the value of the transrefId property. * * @return * possible object is * {@link String } * */ public String getTransrefId() { return transrefId; } /** * Sets the value of the transrefId property. * * @param value * allowed object is * {@link String } * */ public void setTransrefId(String value) { this.transrefId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy