com.powsybl.openrao.data.swecneexporter.xsd.SeriesReason Maven / Gradle / Ivy
//
// 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:13 PM UTC
//
package com.powsybl.openrao.data.swecneexporter.xsd;
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 Series_Reason complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Series_Reason">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="code" type="{urn:iec62325.351:tc57wg16:451-n:cnedocument:2:3}ReasonCode_String"/>
* <element name="text" type="{urn:iec62325.351:tc57wg16:451-n:cnedocument:2:3}ReasonText_String" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Series_Reason", propOrder = {
"code",
"text"
})
public class SeriesReason {
@XmlElement(required = true)
protected String code;
protected String text;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the text property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getText() {
return text;
}
/**
* Sets the value of the text property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setText(String value) {
this.text = value;
}
}