xsd.etso_core_cmpts.PriceDirection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-refprog-xml-importer Show documentation
Show all versions of open-rao-refprog-xml-importer Show documentation
Module that contains RefProg file importer
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.08.30 at 01:38:25 PM UTC
//
package xsd.etso_core_cmpts;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import xsd.etso_code_lists.PriceDirectionTypeList;
/**
*
*
* <?xml version="1.0" encoding="UTF-8"?><Uid xmlns:ecc="etso-core-cmpts.xsd" xmlns:ecl="etso-code-lists.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">ET0049</Uid>
*
*
*
* <?xml version="1.0" encoding="UTF-8"?><Definition xmlns:ecc="etso-core-cmpts.xsd" xmlns:ecl="etso-code-lists.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">The nature of a price (i.e.an Impacted Area System Operator pays to internal Market Parties or inverse).</Definition>
*
*
*
* Java class for PriceDirection complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PriceDirection">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="v" use="required" type="{etso-code-lists.xsd}PriceDirectionTypeList" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PriceDirection")
public class PriceDirection {
@XmlAttribute(name = "v", required = true)
protected PriceDirectionTypeList v;
/**
* Gets the value of the v property.
*
* @return
* possible object is
* {@link PriceDirectionTypeList }
*
*/
public PriceDirectionTypeList getV() {
return v;
}
/**
* Sets the value of the v property.
*
* @param value
* allowed object is
* {@link PriceDirectionTypeList }
*
*/
public void setV(PriceDirectionTypeList value) {
this.v = value;
}
}