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

com.transbank.webpay.wswebpay.service.AcknowledgeTransaction 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for acknowledgeTransaction complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="acknowledgeTransaction">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tokenInput" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "acknowledgeTransaction", propOrder = { "tokenInput" }) public class AcknowledgeTransaction { @XmlElement(required = true) protected String tokenInput; /** * Gets the value of the tokenInput property. * * @return * possible object is * {@link String } * */ public String getTokenInput() { return tokenInput; } /** * Sets the value of the tokenInput property. * * @param value * allowed object is * {@link String } * */ public void setTokenInput(String value) { this.tokenInput = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy