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

com.transbank.webpay.wswebpay.service.WsCompleteQueryShareInput 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.XmlType;


/**
 * 

Java class for wsCompleteQueryShareInput complex type. * *

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

 * <complexType name="wsCompleteQueryShareInput">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="idQueryShare" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *         <element name="deferredPeriodIndex" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "wsCompleteQueryShareInput", propOrder = { "idQueryShare", "deferredPeriodIndex" }) public class WsCompleteQueryShareInput { protected long idQueryShare; protected Integer deferredPeriodIndex; /** * Gets the value of the idQueryShare property. * */ public long getIdQueryShare() { return idQueryShare; } /** * Sets the value of the idQueryShare property. * */ public void setIdQueryShare(long value) { this.idQueryShare = value; } /** * Gets the value of the deferredPeriodIndex property. * * @return * possible object is * {@link Integer } * */ public Integer getDeferredPeriodIndex() { return deferredPeriodIndex; } /** * Sets the value of the deferredPeriodIndex property. * * @param value * allowed object is * {@link Integer } * */ public void setDeferredPeriodIndex(Integer value) { this.deferredPeriodIndex = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy