com.transbank.webpay.wswebpay.service.WsCompleteAuthorizeOutput Maven / Gradle / Ivy
Show all versions of transbank-sdk-java Show documentation
package com.transbank.webpay.wswebpay.service;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for wsCompleteAuthorizeOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="wsCompleteAuthorizeOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="accountingDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="buyOrder" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="detailsOutput" type="{http://service.wswebpay.webpay.transbank.com/}wsTransactionDetailOutput" maxOccurs="unbounded" minOccurs="0"/>
* <element name="sessionId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="transactionDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "wsCompleteAuthorizeOutput", propOrder = {
"accountingDate",
"buyOrder",
"detailsOutput",
"sessionId",
"transactionDate"
})
public class WsCompleteAuthorizeOutput {
protected String accountingDate;
protected String buyOrder;
@XmlElement(nillable = true)
protected List detailsOutput;
protected String sessionId;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar transactionDate;
/**
* Gets the value of the accountingDate property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAccountingDate() {
return accountingDate;
}
/**
* Sets the value of the accountingDate property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAccountingDate(String value) {
this.accountingDate = value;
}
/**
* Gets the value of the buyOrder property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBuyOrder() {
return buyOrder;
}
/**
* Sets the value of the buyOrder property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBuyOrder(String value) {
this.buyOrder = value;
}
/**
* Gets the value of the detailsOutput property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the detailsOutput property.
*
*
* For example, to add a new item, do as follows:
*
* getDetailsOutput().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link WsTransactionDetailOutput }
*
*
*/
public List getDetailsOutput() {
if (detailsOutput == null) {
detailsOutput = new ArrayList();
}
return this.detailsOutput;
}
/**
* Gets the value of the sessionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSessionId() {
return sessionId;
}
/**
* Sets the value of the sessionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSessionId(String value) {
this.sessionId = value;
}
/**
* Gets the value of the transactionDate property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getTransactionDate() {
return transactionDate;
}
/**
* Sets the value of the transactionDate property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setTransactionDate(XMLGregorianCalendar value) {
this.transactionDate = value;
}
}