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

com.sportradar.uf.datamodel.UFBetStop 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="groups" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="market_status" type="{}marketStatus" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "bet_stop") public class UFBetStop implements UnmarshalledMessage { @XmlAttribute(name = "groups", required = true) protected String groups; @XmlAttribute(name = "market_status") protected UFMarketStatus marketStatus; @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 groups property. * * @return * possible object is * {@link String } * */ public String getGroups() { return groups; } /** * Sets the value of the groups property. * * @param value * allowed object is * {@link String } * */ public void setGroups(String value) { this.groups = value; } /** * Gets the value of the marketStatus property. * * @return * possible object is * {@link UFMarketStatus } * */ public UFMarketStatus getMarketStatus() { return marketStatus; } /** * Sets the value of the marketStatus property. * * @param value * allowed object is * {@link UFMarketStatus } * */ public void setMarketStatus(UFMarketStatus value) { this.marketStatus = 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