com.transbank.webpayserver.webservices.OneClickReverseInput 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.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 - 2025 Weber Informatics LLC | Privacy Policy