com.transbank.webpay.wswebpay.service.CaptureOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transbank-sdk-java Show documentation
Show all versions of transbank-sdk-java Show documentation
Tranbank API integration SDK for Java Projects
package com.transbank.webpay.wswebpay.service;
import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Clase Java para captureOutput complex type.
*
*
El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase.
*
*
* <complexType name="captureOutput">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="authorizationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="authorizationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="capturedAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
* <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "captureOutput", propOrder = {
"authorizationCode",
"authorizationDate",
"capturedAmount",
"token"
})
public class CaptureOutput {
protected String authorizationCode;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar authorizationDate;
protected BigDecimal capturedAmount;
protected String token;
/**
* Obtiene el valor de la propiedad authorizationCode.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthorizationCode() {
return authorizationCode;
}
/**
* Define el valor de la propiedad authorizationCode.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthorizationCode(String value) {
this.authorizationCode = value;
}
/**
* Obtiene el valor de la propiedad authorizationDate.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getAuthorizationDate() {
return authorizationDate;
}
/**
* Define el valor de la propiedad authorizationDate.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setAuthorizationDate(XMLGregorianCalendar value) {
this.authorizationDate = value;
}
/**
* Obtiene el valor de la propiedad capturedAmount.
*
* @return
* possible object is
* {@link BigDecimal }
*
*/
public BigDecimal getCapturedAmount() {
return capturedAmount;
}
/**
* Define el valor de la propiedad capturedAmount.
*
* @param value
* allowed object is
* {@link BigDecimal }
*
*/
public void setCapturedAmount(BigDecimal value) {
this.capturedAmount = value;
}
/**
* Obtiene el valor de la propiedad token.
*
* @return
* possible object is
* {@link String }
*
*/
public String getToken() {
return token;
}
/**
* Define el valor de la propiedad token.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setToken(String value) {
this.token = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy