com.transbank.webpayserver.webservices.OneClickPayOutput 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.webpayserver.webservices;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for oneClickPayOutput complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="oneClickPayOutput">
* <complexContent>
* <extension base="{http://webservices.webpayserver.transbank.com/}baseBean">
* <sequence>
* <element name="authorizationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="creditCardType" type="{http://webservices.webpayserver.transbank.com/}creditCardType" minOccurs="0"/>
* <element name="last4CardDigits" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="responseCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
* <element name="transactionId" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "oneClickPayOutput", propOrder = {
"authorizationCode",
"creditCardType",
"last4CardDigits",
"responseCode",
"transactionId"
})
public class OneClickPayOutput
extends BaseBean
{
protected String authorizationCode;
@XmlSchemaType(name = "string")
protected CreditCardType creditCardType;
protected String last4CardDigits;
protected int responseCode;
protected long transactionId;
/**
* 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 creditCardType property.
*
* @return
* possible object is
* {@link CreditCardType }
*
*/
public CreditCardType getCreditCardType() {
return creditCardType;
}
/**
* Sets the value of the creditCardType property.
*
* @param value
* allowed object is
* {@link CreditCardType }
*
*/
public void setCreditCardType(CreditCardType value) {
this.creditCardType = value;
}
/**
* Gets the value of the last4CardDigits property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLast4CardDigits() {
return last4CardDigits;
}
/**
* Sets the value of the last4CardDigits property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLast4CardDigits(String value) {
this.last4CardDigits = 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;
}
/**
* Gets the value of the transactionId property.
*
*/
public long getTransactionId() {
return transactionId;
}
/**
* Sets the value of the transactionId property.
*
*/
public void setTransactionId(long value) {
this.transactionId = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy