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

com.sportradar.uf.sportsapi.datamodel.SAPISportEvent 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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for sportEvent complex type. * *

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

 * <complexType name="sportEvent">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="tournament_round" type="{http://schemas.sportradar.com/sportsapi/v1/unified}matchRound" minOccurs="0"/>
 *         <element name="season" type="{http://schemas.sportradar.com/sportsapi/v1/unified}seasonExtended" minOccurs="0"/>
 *         <element name="parent" type="{http://schemas.sportradar.com/sportsapi/v1/unified}parentStage" minOccurs="0"/>
 *         <element name="tournament" type="{http://schemas.sportradar.com/sportsapi/v1/unified}tournament" minOccurs="0"/>
 *         <element name="sport_event_conditions" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventConditions" minOccurs="0"/>
 *         <element name="competitors" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventCompetitors" minOccurs="0"/>
 *         <element name="races" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventChildren" minOccurs="0"/>
 *         <element name="venue" type="{http://schemas.sportradar.com/sportsapi/v1/unified}venue" minOccurs="0"/>
 *       </sequence>
 *       <attGroup ref="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventAttributes"/>
 *       <attribute name="liveodds" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="status" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="next_live_time" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sportEvent", propOrder = { "tournamentRound", "season", "parent", "tournament", "sportEventConditions", "competitors", "races", "venue" }) @XmlSeeAlso({ SAPIFixture.class }) public class SAPISportEvent { @XmlElement(name = "tournament_round") protected SAPIMatchRound tournamentRound; protected SAPISeasonExtended season; protected SAPIParentStage parent; protected SAPITournament tournament; @XmlElement(name = "sport_event_conditions") protected SAPISportEventConditions sportEventConditions; protected SAPISportEventCompetitors competitors; protected SAPISportEventChildren races; protected SAPIVenue venue; @XmlAttribute(name = "liveodds") protected String liveodds; @XmlAttribute(name = "status") protected String status; @XmlAttribute(name = "next_live_time") protected String nextLiveTime; @XmlAttribute(name = "id") protected String id; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "scheduled") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar scheduled; @XmlAttribute(name = "start_time_tbd") protected Boolean startTimeTbd; @XmlAttribute(name = "scheduled_end") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar scheduledEnd; @XmlAttribute(name = "replaced_by") protected String replacedBy; /** * Gets the value of the tournamentRound property. * * @return * possible object is * {@link SAPIMatchRound } * */ public SAPIMatchRound getTournamentRound() { return tournamentRound; } /** * Sets the value of the tournamentRound property. * * @param value * allowed object is * {@link SAPIMatchRound } * */ public void setTournamentRound(SAPIMatchRound value) { this.tournamentRound = value; } /** * Gets the value of the season property. * * @return * possible object is * {@link SAPISeasonExtended } * */ public SAPISeasonExtended getSeason() { return season; } /** * Sets the value of the season property. * * @param value * allowed object is * {@link SAPISeasonExtended } * */ public void setSeason(SAPISeasonExtended value) { this.season = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link SAPIParentStage } * */ public SAPIParentStage getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link SAPIParentStage } * */ public void setParent(SAPIParentStage value) { this.parent = value; } /** * Gets the value of the tournament property. * * @return * possible object is * {@link SAPITournament } * */ public SAPITournament getTournament() { return tournament; } /** * Sets the value of the tournament property. * * @param value * allowed object is * {@link SAPITournament } * */ public void setTournament(SAPITournament value) { this.tournament = value; } /** * Gets the value of the sportEventConditions property. * * @return * possible object is * {@link SAPISportEventConditions } * */ public SAPISportEventConditions getSportEventConditions() { return sportEventConditions; } /** * Sets the value of the sportEventConditions property. * * @param value * allowed object is * {@link SAPISportEventConditions } * */ public void setSportEventConditions(SAPISportEventConditions value) { this.sportEventConditions = value; } /** * Gets the value of the competitors property. * * @return * possible object is * {@link SAPISportEventCompetitors } * */ public SAPISportEventCompetitors getCompetitors() { return competitors; } /** * Sets the value of the competitors property. * * @param value * allowed object is * {@link SAPISportEventCompetitors } * */ public void setCompetitors(SAPISportEventCompetitors value) { this.competitors = value; } /** * Gets the value of the races property. * * @return * possible object is * {@link SAPISportEventChildren } * */ public SAPISportEventChildren getRaces() { return races; } /** * Sets the value of the races property. * * @param value * allowed object is * {@link SAPISportEventChildren } * */ public void setRaces(SAPISportEventChildren value) { this.races = value; } /** * Gets the value of the venue property. * * @return * possible object is * {@link SAPIVenue } * */ public SAPIVenue getVenue() { return venue; } /** * Sets the value of the venue property. * * @param value * allowed object is * {@link SAPIVenue } * */ public void setVenue(SAPIVenue value) { this.venue = value; } /** * Gets the value of the liveodds property. * * @return * possible object is * {@link String } * */ public String getLiveodds() { return liveodds; } /** * Sets the value of the liveodds property. * * @param value * allowed object is * {@link String } * */ public void setLiveodds(String value) { this.liveodds = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Gets the value of the nextLiveTime property. * * @return * possible object is * {@link String } * */ public String getNextLiveTime() { return nextLiveTime; } /** * Sets the value of the nextLiveTime property. * * @param value * allowed object is * {@link String } * */ public void setNextLiveTime(String value) { this.nextLiveTime = 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 name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the scheduled property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getScheduled() { return scheduled; } /** * Sets the value of the scheduled property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setScheduled(XMLGregorianCalendar value) { this.scheduled = value; } /** * Gets the value of the startTimeTbd property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStartTimeTbd() { return startTimeTbd; } /** * Sets the value of the startTimeTbd property. * * @param value * allowed object is * {@link Boolean } * */ public void setStartTimeTbd(Boolean value) { this.startTimeTbd = value; } /** * Gets the value of the scheduledEnd property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getScheduledEnd() { return scheduledEnd; } /** * Sets the value of the scheduledEnd property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setScheduledEnd(XMLGregorianCalendar value) { this.scheduledEnd = value; } /** * Gets the value of the replacedBy property. * * @return * possible object is * {@link String } * */ public String getReplacedBy() { return replacedBy; } /** * Sets the value of the replacedBy property. * * @param value * allowed object is * {@link String } * */ public void setReplacedBy(String value) { this.replacedBy = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy