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

com.transbank.webpay.wswebpay.service.NullificationOutput 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Clase Java para nullificationOutput complex type. * *

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

 * <complexType name="nullificationOutput">
 *   <complexContent>
 *     <extension base="{http://service.wswebpay.webpay.transbank.com/}baseBean">
 *       <sequence>
 *         <element name="authorizationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="authorizationDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="balance" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="nullifiedAmount" type="{http://www.w3.org/2001/XMLSchema}decimal" minOccurs="0"/>
 *         <element name="token" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "nullificationOutput", propOrder = { "authorizationCode", "authorizationDate", "balance", "nullifiedAmount", "token" }) public class NullificationOutput extends BaseBean { protected String authorizationCode; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar authorizationDate; protected BigDecimal balance; protected BigDecimal nullifiedAmount; protected String token; /** * 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 authorizationDate. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getAuthorizationDate() { return authorizationDate; } /** * Define el valor de la propiedad authorizationDate. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setAuthorizationDate(XMLGregorianCalendar value) { this.authorizationDate = value; } /** * Obtiene el valor de la propiedad balance. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getBalance() { return balance; } /** * Define el valor de la propiedad balance. * * @param value * allowed object is * {@link BigDecimal } * */ public void setBalance(BigDecimal value) { this.balance = value; } /** * Obtiene el valor de la propiedad nullifiedAmount. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getNullifiedAmount() { return nullifiedAmount; } /** * Define el valor de la propiedad nullifiedAmount. * * @param value * allowed object is * {@link BigDecimal } * */ public void setNullifiedAmount(BigDecimal value) { this.nullifiedAmount = value; } /** * Obtiene el valor de la propiedad token. * * @return * possible object is * {@link String } * */ public String getToken() { return token; } /** * Define el valor de la propiedad token. * * @param value * allowed object is * {@link String } * */ public void setToken(String value) { this.token = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy