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

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

There is a newer version: 5.0.0
Show newest version

package com.transbank.webpayserver.webservices;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for oneClickPayInput complex type. * *

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

 * <complexType name="oneClickPayInput">
 *   <complexContent>
 *     <extension base="{http://webservices.webpayserver.transbank.com/}baseBean">
 *       <sequence>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="buyOrder" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="tbkUser" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "oneClickPayInput", propOrder = { "amount", "buyOrder", "tbkUser", "username" }) public class OneClickPayInput extends BaseBean { protected BigDecimal amount; protected Long buyOrder; protected String tbkUser; protected String username; /** * Gets the value of the amount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAmount() { return amount; } /** * Sets the value of the amount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAmount(BigDecimal value) { this.amount = value; } /** * 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; } /** * Gets the value of the tbkUser property. * * @return * possible object is * {@link String } * */ public String getTbkUser() { return tbkUser; } /** * Sets the value of the tbkUser property. * * @param value * allowed object is * {@link String } * */ public void setTbkUser(String value) { this.tbkUser = value; } /** * Gets the value of the username property. * * @return * possible object is * {@link String } * */ public String getUsername() { return username; } /** * Sets the value of the username property. * * @param value * allowed object is * {@link String } * */ public void setUsername(String value) { this.username = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy