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

com.sportradar.uf.sportsapi.datamodel.SAPIMatchTimelineEndpoint 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 matchTimelineEndpoint complex type. * *

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

 * <complexType name="matchTimelineEndpoint">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="sport_event" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEvent"/>
 *         <element name="sport_event_conditions" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventConditions" minOccurs="0"/>
 *         <element name="sport_event_status" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventStatus"/>
 *         <element name="coverage_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}coverageInfo" minOccurs="0"/>
 *         <element name="timeline" type="{http://schemas.sportradar.com/sportsapi/v1/unified}timeline" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="generated_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "matchTimelineEndpoint", propOrder = { "sportEvent", "sportEventConditions", "sportEventStatus", "coverageInfo", "timeline" }) public class SAPIMatchTimelineEndpoint { @XmlElement(name = "sport_event", required = true) protected SAPISportEvent sportEvent; @XmlElement(name = "sport_event_conditions") protected SAPISportEventConditions sportEventConditions; @XmlElement(name = "sport_event_status", required = true) protected SAPISportEventStatus sportEventStatus; @XmlElement(name = "coverage_info") protected SAPICoverageInfo coverageInfo; protected SAPITimeline timeline; @XmlAttribute(name = "generated_at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar generatedAt; /** * Gets the value of the sportEvent property. * * @return * possible object is * {@link SAPISportEvent } * */ public SAPISportEvent getSportEvent() { return sportEvent; } /** * Sets the value of the sportEvent property. * * @param value * allowed object is * {@link SAPISportEvent } * */ public void setSportEvent(SAPISportEvent value) { this.sportEvent = 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 sportEventStatus property. * * @return * possible object is * {@link SAPISportEventStatus } * */ public SAPISportEventStatus getSportEventStatus() { return sportEventStatus; } /** * Sets the value of the sportEventStatus property. * * @param value * allowed object is * {@link SAPISportEventStatus } * */ public void setSportEventStatus(SAPISportEventStatus value) { this.sportEventStatus = value; } /** * Gets the value of the coverageInfo property. * * @return * possible object is * {@link SAPICoverageInfo } * */ public SAPICoverageInfo getCoverageInfo() { return coverageInfo; } /** * Sets the value of the coverageInfo property. * * @param value * allowed object is * {@link SAPICoverageInfo } * */ public void setCoverageInfo(SAPICoverageInfo value) { this.coverageInfo = value; } /** * Gets the value of the timeline property. * * @return * possible object is * {@link SAPITimeline } * */ public SAPITimeline getTimeline() { return timeline; } /** * Sets the value of the timeline property. * * @param value * allowed object is * {@link SAPITimeline } * */ public void setTimeline(SAPITimeline value) { this.timeline = value; } /** * Gets the value of the generatedAt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getGeneratedAt() { return generatedAt; } /** * Sets the value of the generatedAt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setGeneratedAt(XMLGregorianCalendar value) { this.generatedAt = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy