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

com.sportradar.uf.datamodel.UFFixtureChange Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.05.22 at 02:21:20 PM CEST 
//


package com.sportradar.uf.datamodel;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import com.sportradar.unifiedodds.sdk.oddsentities.UnmarshalledMessage;


/**
 * 

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">
 *       <attGroup ref="{}messageAttributes"/>
 *       <attribute name="change_type" type="{}changeType" />
 *       <attribute name="start_time" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="next_live_time" type="{http://www.w3.org/2001/XMLSchema}long" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "fixture_change") public class UFFixtureChange implements UnmarshalledMessage { @XmlAttribute(name = "change_type") protected UFChangeType changeType; @XmlAttribute(name = "start_time", required = true) protected long startTime; @XmlAttribute(name = "next_live_time") protected Long nextLiveTime; @XmlAttribute(name = "product", required = true) protected int product; @XmlAttribute(name = "event_id", required = true) protected String eventId; @XmlAttribute(name = "timestamp", required = true) protected long timestamp; @XmlAttribute(name = "request_id") protected Long requestId; /** * Gets the value of the changeType property. * * @return * possible object is * {@link UFChangeType } * */ public UFChangeType getChangeType() { return changeType; } /** * Sets the value of the changeType property. * * @param value * allowed object is * {@link UFChangeType } * */ public void setChangeType(UFChangeType value) { this.changeType = value; } /** * Gets the value of the startTime property. * */ public long getStartTime() { return startTime; } /** * Sets the value of the startTime property. * */ public void setStartTime(long value) { this.startTime = value; } /** * Gets the value of the nextLiveTime property. * * @return * possible object is * {@link Long } * */ public Long getNextLiveTime() { return nextLiveTime; } /** * Sets the value of the nextLiveTime property. * * @param value * allowed object is * {@link Long } * */ public void setNextLiveTime(Long value) { this.nextLiveTime = value; } /** * Gets the value of the product property. * */ public int getProduct() { return product; } /** * Sets the value of the product property. * */ public void setProduct(int value) { this.product = value; } /** * Gets the value of the eventId property. * * @return * possible object is * {@link String } * */ public String getEventId() { return eventId; } /** * Sets the value of the eventId property. * * @param value * allowed object is * {@link String } * */ public void setEventId(String value) { this.eventId = value; } /** * Gets the value of the timestamp property. * */ public long getTimestamp() { return timestamp; } /** * Sets the value of the timestamp property. * */ public void setTimestamp(long value) { this.timestamp = value; } /** * Gets the value of the requestId property. * * @return * possible object is * {@link Long } * */ public Long getRequestId() { return requestId; } /** * Sets the value of the requestId property. * * @param value * allowed object is * {@link Long } * */ public void setRequestId(Long value) { this.requestId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy