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

com.transbank.webpay.wswebpay.service.WsTransactionDetailOutput Maven / Gradle / Ivy

There is a newer version: 5.0.0
Show newest version

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