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

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

There is a newer version: 5.0.0
Show newest version

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 oneClickReverseOutput complex type. * *

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

 * <complexType name="oneClickReverseOutput">
 *   <complexContent>
 *     <extension base="{http://webservices.webpayserver.transbank.com/}baseBean">
 *       <sequence>
 *         <element name="reverseCode" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="reversed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "oneClickReverseOutput", propOrder = { "reverseCode", "reversed" }) public class OneClickReverseOutput extends BaseBean { protected Long reverseCode; protected boolean reversed; /** * Gets the value of the reverseCode property. * * @return * possible object is * {@link Long } * */ public Long getReverseCode() { return reverseCode; } /** * Sets the value of the reverseCode property. * * @param value * allowed object is * {@link Long } * */ public void setReverseCode(Long value) { this.reverseCode = value; } /** * Gets the value of the reversed property. * */ public boolean isReversed() { return reversed; } /** * Sets the value of the reversed property. * */ public void setReversed(boolean value) { this.reversed = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy