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

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


/**
 * 

Java class for seasonExtended complex type. * *

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

 * <complexType name="seasonExtended">
 *   <complexContent>
 *     <extension base="{http://schemas.sportradar.com/sportsapi/v1/unified}season">
 *       <attribute name="start_date" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
 *       <attribute name="end_date" use="required" type="{http://www.w3.org/2001/XMLSchema}date" />
 *       <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}time" />
 *       <attribute name="end_time" type="{http://www.w3.org/2001/XMLSchema}time" />
 *       <attribute name="year" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="tournament_id" type="{http://schemas.sportradar.com/sportsapi/v1/unified}tournamentUrn" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "seasonExtended") @XmlSeeAlso({ SAPICurrentSeason.class }) public class SAPISeasonExtended extends SAPISeason { @XmlAttribute(name = "start_date", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar startDate; @XmlAttribute(name = "end_date", required = true) @XmlSchemaType(name = "date") protected XMLGregorianCalendar endDate; @XmlAttribute(name = "start_time") @XmlSchemaType(name = "time") protected XMLGregorianCalendar startTime; @XmlAttribute(name = "end_time") @XmlSchemaType(name = "time") protected XMLGregorianCalendar endTime; @XmlAttribute(name = "year") protected String year; @XmlAttribute(name = "tournament_id") protected String tournamentId; /** * Gets the value of the startDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getStartDate() { return startDate; } /** * Sets the value of the startDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setStartDate(XMLGregorianCalendar value) { this.startDate = value; } /** * Gets the value of the endDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndDate() { return endDate; } /** * Sets the value of the endDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndDate(XMLGregorianCalendar value) { this.endDate = 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; } /** * Gets the value of the endTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getEndTime() { return endTime; } /** * Sets the value of the endTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setEndTime(XMLGregorianCalendar value) { this.endTime = value; } /** * Gets the value of the year property. * * @return * possible object is * {@link String } * */ public String getYear() { return year; } /** * Sets the value of the year property. * * @param value * allowed object is * {@link String } * */ public void setYear(String value) { this.year = value; } /** * Gets the value of the tournamentId property. * * @return * possible object is * {@link String } * */ public String getTournamentId() { return tournamentId; } /** * Sets the value of the tournamentId property. * * @param value * allowed object is * {@link String } * */ public void setTournamentId(String value) { this.tournamentId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy