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

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

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

 * <complexType name="fixture">
 *   <complexContent>
 *     <extension base="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEvent">
 *       <sequence>
 *         <element name="delayed_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}delayedInfo" minOccurs="0"/>
 *         <element name="tv_channels" type="{http://schemas.sportradar.com/sportsapi/v1/unified}tvChannels" minOccurs="0"/>
 *         <element name="extra_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}extraInfo" minOccurs="0"/>
 *         <element name="coverage_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}coverageInfo" minOccurs="0"/>
 *         <element name="product_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}productInfo" minOccurs="0"/>
 *         <element name="reference_ids" type="{http://schemas.sportradar.com/sportsapi/v1/unified}referenceIds" minOccurs="0"/>
 *         <element name="scheduled_start_time_changes" type="{http://schemas.sportradar.com/sportsapi/v1/unified}scheduledStartTimeChanges" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="start_time_confirmed" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "fixture", propOrder = { "delayedInfo", "tvChannels", "extraInfo", "coverageInfo", "productInfo", "referenceIds", "scheduledStartTimeChanges" }) public class SAPIFixture extends SAPISportEvent { @XmlElement(name = "delayed_info") protected SAPIDelayedInfo delayedInfo; @XmlElement(name = "tv_channels") protected SAPITvChannels tvChannels; @XmlElement(name = "extra_info") protected SAPIExtraInfo extraInfo; @XmlElement(name = "coverage_info") protected SAPICoverageInfo coverageInfo; @XmlElement(name = "product_info") protected SAPIProductInfo productInfo; @XmlElement(name = "reference_ids") protected SAPIReferenceIds referenceIds; @XmlElement(name = "scheduled_start_time_changes") protected SAPIScheduledStartTimeChanges scheduledStartTimeChanges; @XmlAttribute(name = "start_time_confirmed") protected Boolean startTimeConfirmed; @XmlAttribute(name = "start_time") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar startTime; /** * Gets the value of the delayedInfo property. * * @return * possible object is * {@link SAPIDelayedInfo } * */ public SAPIDelayedInfo getDelayedInfo() { return delayedInfo; } /** * Sets the value of the delayedInfo property. * * @param value * allowed object is * {@link SAPIDelayedInfo } * */ public void setDelayedInfo(SAPIDelayedInfo value) { this.delayedInfo = value; } /** * Gets the value of the tvChannels property. * * @return * possible object is * {@link SAPITvChannels } * */ public SAPITvChannels getTvChannels() { return tvChannels; } /** * Sets the value of the tvChannels property. * * @param value * allowed object is * {@link SAPITvChannels } * */ public void setTvChannels(SAPITvChannels value) { this.tvChannels = value; } /** * Gets the value of the extraInfo property. * * @return * possible object is * {@link SAPIExtraInfo } * */ public SAPIExtraInfo getExtraInfo() { return extraInfo; } /** * Sets the value of the extraInfo property. * * @param value * allowed object is * {@link SAPIExtraInfo } * */ public void setExtraInfo(SAPIExtraInfo value) { this.extraInfo = 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 productInfo property. * * @return * possible object is * {@link SAPIProductInfo } * */ public SAPIProductInfo getProductInfo() { return productInfo; } /** * Sets the value of the productInfo property. * * @param value * allowed object is * {@link SAPIProductInfo } * */ public void setProductInfo(SAPIProductInfo value) { this.productInfo = value; } /** * Gets the value of the referenceIds property. * * @return * possible object is * {@link SAPIReferenceIds } * */ public SAPIReferenceIds getReferenceIds() { return referenceIds; } /** * Sets the value of the referenceIds property. * * @param value * allowed object is * {@link SAPIReferenceIds } * */ public void setReferenceIds(SAPIReferenceIds value) { this.referenceIds = value; } /** * Gets the value of the scheduledStartTimeChanges property. * * @return * possible object is * {@link SAPIScheduledStartTimeChanges } * */ public SAPIScheduledStartTimeChanges getScheduledStartTimeChanges() { return scheduledStartTimeChanges; } /** * Sets the value of the scheduledStartTimeChanges property. * * @param value * allowed object is * {@link SAPIScheduledStartTimeChanges } * */ public void setScheduledStartTimeChanges(SAPIScheduledStartTimeChanges value) { this.scheduledStartTimeChanges = value; } /** * Gets the value of the startTimeConfirmed property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStartTimeConfirmed() { return startTimeConfirmed; } /** * Sets the value of the startTimeConfirmed property. * * @param value * allowed object is * {@link Boolean } * */ public void setStartTimeConfirmed(Boolean value) { this.startTimeConfirmed = value; } /** * Gets the value of the startTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartTime() { return startTime; } /** * Sets the value of the startTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartTime(XMLGregorianCalendar value) { this.startTime = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy