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

cz.nic.xml.epp.fred_1.RequestFeeInfoDataT Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.21 at 12:01:05 PM CET 
//


package cz.nic.xml.epp.fred_1;

import java.math.BigDecimal;
import java.math.BigInteger;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for requestFeeInfoDataT complex type. * *

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

 * <complexType name="requestFeeInfoDataT">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="periodFrom" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="periodTo" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="totalFreeCount" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
 *         <element name="usedCount" type="{http://www.w3.org/2001/XMLSchema}unsignedLong"/>
 *         <element name="price" type="{http://www.nic.cz/xml/epp/fred-1.5}amountType"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "requestFeeInfoDataT", propOrder = { "periodFrom", "periodTo", "totalFreeCount", "usedCount", "price" }) public class RequestFeeInfoDataT { @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar periodFrom; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar periodTo; @XmlElement(required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger totalFreeCount; @XmlElement(required = true) @XmlSchemaType(name = "unsignedLong") protected BigInteger usedCount; @XmlElement(required = true) protected BigDecimal price; /** * Gets the value of the periodFrom property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPeriodFrom() { return periodFrom; } /** * Sets the value of the periodFrom property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPeriodFrom(XMLGregorianCalendar value) { this.periodFrom = value; } /** * Gets the value of the periodTo property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getPeriodTo() { return periodTo; } /** * Sets the value of the periodTo property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setPeriodTo(XMLGregorianCalendar value) { this.periodTo = value; } /** * Gets the value of the totalFreeCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getTotalFreeCount() { return totalFreeCount; } /** * Sets the value of the totalFreeCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setTotalFreeCount(BigInteger value) { this.totalFreeCount = value; } /** * Gets the value of the usedCount property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getUsedCount() { return usedCount; } /** * Sets the value of the usedCount property. * * @param value * allowed object is * {@link BigInteger } * */ public void setUsedCount(BigInteger value) { this.usedCount = value; } /** * Gets the value of the price property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getPrice() { return price; } /** * Sets the value of the price property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setPrice(BigDecimal value) { this.price = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy