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

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

There is a newer version: 5.0.0
Show newest version

package com.transbank.webpay.wswebpay.service;

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


/**
 * 

Clase Java para captureInput complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="captureInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="commerceId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="buyOrder" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="authorizationCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="captureAmount" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "captureInput", propOrder = { "commerceId", "buyOrder", "authorizationCode", "captureAmount" }) public class CaptureInput { protected long commerceId; @XmlElement(required = true) protected String buyOrder; @XmlElement(required = true) protected String authorizationCode; @XmlElement(required = true) protected BigDecimal captureAmount; /** * Obtiene el valor de la propiedad commerceId. * */ public long getCommerceId() { return commerceId; } /** * Define el valor de la propiedad commerceId. * */ public void setCommerceId(long value) { this.commerceId = value; } /** * Obtiene el valor de la propiedad buyOrder. * * @return * possible object is * {@link String } * */ public String getBuyOrder() { return buyOrder; } /** * Define el valor de la propiedad buyOrder. * * @param value * allowed object is * {@link String } * */ public void setBuyOrder(String value) { this.buyOrder = value; } /** * Obtiene el valor de la propiedad authorizationCode. * * @return * possible object is * {@link String } * */ public String getAuthorizationCode() { return authorizationCode; } /** * Define el valor de la propiedad authorizationCode. * * @param value * allowed object is * {@link String } * */ public void setAuthorizationCode(String value) { this.authorizationCode = value; } /** * Obtiene el valor de la propiedad captureAmount. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getCaptureAmount() { return captureAmount; } /** * Define el valor de la propiedad captureAmount. * * @param value * allowed object is * {@link BigDecimal } * */ public void setCaptureAmount(BigDecimal value) { this.captureAmount = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy