com.transbank.webpay.wswebpay.service.WsTransactionDetailOutput 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for wsTransactionDetailOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="wsTransactionDetailOutput">
* <complexContent>
* <extension base="{http://service.wswebpay.webpay.transbank.com/}wsTransactionDetail">
* <sequence>
* <element name="authorizationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="paymentTypeCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="responseCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "wsTransactionDetailOutput", propOrder = {
"authorizationCode",
"paymentTypeCode",
"responseCode"
})
public class WsTransactionDetailOutput
extends WsTransactionDetail
{
protected String authorizationCode;
protected String paymentTypeCode;
protected int responseCode;
/**
* Gets the value of the authorizationCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthorizationCode() {
return authorizationCode;
}
/**
* Sets the value of the authorizationCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthorizationCode(String value) {
this.authorizationCode = value;
}
/**
* Gets the value of the paymentTypeCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPaymentTypeCode() {
return paymentTypeCode;
}
/**
* Sets the value of the paymentTypeCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPaymentTypeCode(String value) {
this.paymentTypeCode = value;
}
/**
* Gets the value of the responseCode property.
*
*/
public int getResponseCode() {
return responseCode;
}
/**
* Sets the value of the responseCode property.
*
*/
public void setResponseCode(int value) {
this.responseCode = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy