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

com.farao_community.farao.cse.data.xsd.TNTC Maven / Gradle / Ivy

There is a newer version: 1.38.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.03.12 at 10:04:12 AM UTC 
//


package com.farao_community.farao.cse.data.xsd;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for T_NTC complex type. * *

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

 * <complexType name="T_NTC">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="v" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *       <attribute name="type">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="absolute"/>
 *             <enumeration value="relative"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *       <attribute name="country" type="{}T_CountryList" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "T_NTC", namespace = "") public class TNTC { @XmlAttribute(name = "v", required = true) protected BigDecimal v; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "country") protected TCountryList country; /** * Gets the value of the v property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getV() { return v; } /** * Sets the value of the v property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setV(BigDecimal value) { this.v = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the country property. * * @return * possible object is * {@link TCountryList } * */ public TCountryList getCountry() { return country; } /** * Sets the value of the country property. * * @param value * allowed object is * {@link TCountryList } * */ public void setCountry(TCountryList value) { this.country = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy