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

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

There is a newer version: 5.0.0
Show newest version

package com.transbank.webpay.wswebpay.service;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for wsCompletePaymentTypeInput complex type. * *

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

 * <complexType name="wsCompletePaymentTypeInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="commerceCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="buyOrder" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="queryShareInput" type="{http://service.wswebpay.webpay.transbank.com/}wsCompleteQueryShareInput" minOccurs="0"/>
 *         <element name="gracePeriod" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "wsCompletePaymentTypeInput", propOrder = { "commerceCode", "buyOrder", "queryShareInput", "gracePeriod" }) public class WsCompletePaymentTypeInput { @XmlElement(required = true) protected String commerceCode; @XmlElement(required = true) protected String buyOrder; protected WsCompleteQueryShareInput queryShareInput; protected Boolean gracePeriod; /** * 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; } /** * Gets the value of the queryShareInput property. * * @return * possible object is * {@link WsCompleteQueryShareInput } * */ public WsCompleteQueryShareInput getQueryShareInput() { return queryShareInput; } /** * Sets the value of the queryShareInput property. * * @param value * allowed object is * {@link WsCompleteQueryShareInput } * */ public void setQueryShareInput(WsCompleteQueryShareInput value) { this.queryShareInput = value; } /** * Gets the value of the gracePeriod property. * * @return * possible object is * {@link Boolean } * */ public Boolean isGracePeriod() { return gracePeriod; } /** * Sets the value of the gracePeriod property. * * @param value * allowed object is * {@link Boolean } * */ public void setGracePeriod(Boolean value) { this.gracePeriod = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy