org.fpml.fpml_5.confirmation.TradeTimestamp Maven / Gradle / Ivy
//
// 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: 2024.05.10 at 03:58:40 PM UTC
//
package org.fpml.fpml_5.confirmation;
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;
/**
* A generic trade timestamp
*
* Java class for TradeTimestamp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TradeTimestamp">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{http://www.fpml.org/FpML-5/confirmation}TimestampTypeScheme"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TradeTimestamp", propOrder = {
"type",
"value"
})
public class TradeTimestamp {
@XmlElement(required = true)
protected TimestampTypeScheme type;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar value;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link TimestampTypeScheme }
*
*/
public TimestampTypeScheme getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link TimestampTypeScheme }
*
*/
public void setType(TimestampTypeScheme value) {
this.type = value;
}
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setValue(XMLGregorianCalendar value) {
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy