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

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


/**
 * 

Java class for wsTransactionDetail complex type. * *

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

 * <complexType name="wsTransactionDetail">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sharesAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="sharesNumber" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="amount" type="{http://www.w3.org/2001/XMLSchema}decimal"/>
 *         <element name="commerceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="buyOrder" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "wsTransactionDetail", propOrder = { "sharesAmount", "sharesNumber", "amount", "commerceCode", "buyOrder" }) @XmlSeeAlso({ WsTransactionDetailOutput.class }) public class WsTransactionDetail { protected BigDecimal sharesAmount; protected Integer sharesNumber; @XmlElement(required = true) protected BigDecimal amount; @XmlElement(required = true) protected String commerceCode; @XmlElement(required = true) protected String buyOrder; /** * Gets the value of the sharesAmount property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getSharesAmount() { return sharesAmount; } /** * Sets the value of the sharesAmount property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setSharesAmount(BigDecimal value) { this.sharesAmount = value; } /** * Gets the value of the sharesNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getSharesNumber() { return sharesNumber; } /** * Sets the value of the sharesNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setSharesNumber(Integer value) { this.sharesNumber = value; } /** * 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 commerceCode property. * * @return * possible object is * {@link String } * */ public String getCommerceCode() { return commerceCode; } /** * Sets the value of the commerceCode property. * * @param value * allowed object is * {@link String } * */ public void setCommerceCode(String value) { this.commerceCode = value; } /** * Gets the value of the buyOrder property. * * @return * possible object is * {@link String } * */ public String getBuyOrder() { return buyOrder; } /** * Sets the value of the buyOrder property. * * @param value * allowed object is * {@link String } * */ public void setBuyOrder(String value) { this.buyOrder = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy