net.datastream.schemas.mp_fields.SCHEDULEBY Maven / Gradle / Ivy
package net.datastream.schemas.mp_fields;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="SCHEDULEBYTRADE" type="{http://schemas.datastream.net/MP_fields}SCHEDULEBYTRADE_Type"/>
* <element name="SCHEDULEBYPERSON" type="{http://schemas.datastream.net/MP_fields}PERSONID_Type"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"schedulebytrade",
"schedulebyperson"
})
@XmlRootElement(name = "SCHEDULEBY")
public class SCHEDULEBY {
@XmlElement(name = "SCHEDULEBYTRADE")
protected SCHEDULEBYTRADE_Type schedulebytrade;
@XmlElement(name = "SCHEDULEBYPERSON")
protected PERSONID_Type schedulebyperson;
/**
* Gets the value of the schedulebytrade property.
*
* @return
* possible object is
* {@link SCHEDULEBYTRADE_Type }
*
*/
public SCHEDULEBYTRADE_Type getSCHEDULEBYTRADE() {
return schedulebytrade;
}
/**
* Sets the value of the schedulebytrade property.
*
* @param value
* allowed object is
* {@link SCHEDULEBYTRADE_Type }
*
*/
public void setSCHEDULEBYTRADE(SCHEDULEBYTRADE_Type value) {
this.schedulebytrade = value;
}
/**
* Gets the value of the schedulebyperson property.
*
* @return
* possible object is
* {@link PERSONID_Type }
*
*/
public PERSONID_Type getSCHEDULEBYPERSON() {
return schedulebyperson;
}
/**
* Sets the value of the schedulebyperson property.
*
* @param value
* allowed object is
* {@link PERSONID_Type }
*
*/
public void setSCHEDULEBYPERSON(PERSONID_Type value) {
this.schedulebyperson = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy