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

com.transbank.webpayserver.webservices.OneClickPayOutput Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version

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 - 2024 Weber Informatics LLC | Privacy Policy