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

com.sportradar.uf.sportsapi.datamodel.SAPIDrawFixture 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.sportsapi.datamodel;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for draw_fixture complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="draw_fixture">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="lottery" type="{http://schemas.sportradar.com/sportsapi/v1/unified}lottery"/>
 *       </sequence>
 *       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="draw_date" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="status" type="{http://schemas.sportradar.com/sportsapi/v1/unified}drawStatus" />
 *       <attribute name="display_id" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "draw_fixture", propOrder = { "lottery" }) public class SAPIDrawFixture { @XmlElement(required = true) protected SAPILottery lottery; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "draw_date") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar drawDate; @XmlAttribute(name = "status") protected SAPIDrawStatus status; @XmlAttribute(name = "display_id") protected Integer displayId; /** * Gets the value of the lottery property. * * @return * possible object is * {@link SAPILottery } * */ public SAPILottery getLottery() { return lottery; } /** * Sets the value of the lottery property. * * @param value * allowed object is * {@link SAPILottery } * */ public void setLottery(SAPILottery value) { this.lottery = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the drawDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDrawDate() { return drawDate; } /** * Sets the value of the drawDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDrawDate(XMLGregorianCalendar value) { this.drawDate = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link SAPIDrawStatus } * */ public SAPIDrawStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link SAPIDrawStatus } * */ public void setStatus(SAPIDrawStatus value) { this.status = value; } /** * Gets the value of the displayId property. * * @return * possible object is * {@link Integer } * */ public Integer getDisplayId() { return displayId; } /** * Sets the value of the displayId property. * * @param value * allowed object is * {@link Integer } * */ public void setDisplayId(Integer value) { this.displayId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy