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

com.transbank.webpayserver.webservices.OneClickReverseInput 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.XmlType;


/**
 * 

Java class for oneClickReverseInput complex type. * *

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

 * <complexType name="oneClickReverseInput">
 *   <complexContent>
 *     <extension base="{http://webservices.webpayserver.transbank.com/}baseBean">
 *       <sequence>
 *         <element name="buyorder" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "oneClickReverseInput", propOrder = { "buyorder" }) public class OneClickReverseInput extends BaseBean { protected Long buyorder; /** * Gets the value of the buyorder property. * * @return * possible object is * {@link Long } * */ public Long getBuyorder() { return buyorder; } /** * Sets the value of the buyorder property. * * @param value * allowed object is * {@link Long } * */ public void setBuyorder(Long value) { this.buyorder = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy