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

com.sportradar.uf.datamodel.UFAlive 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">
 *       <attribute name="product" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="timestamp" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="subscribed" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "alive") public class UFAlive implements UnmarshalledMessage { @XmlAttribute(name = "product", required = true) protected int product; @XmlAttribute(name = "timestamp", required = true) protected long timestamp; @XmlAttribute(name = "subscribed", required = true) protected int subscribed; /** * 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 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 subscribed property. * */ public int getSubscribed() { return subscribed; } /** * Sets the value of the subscribed property. * */ public void setSubscribed(int value) { this.subscribed = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy