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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy