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

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


/**
 * 

Java class for parentStage complex type. * *

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

 * <complexType name="parentStage">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attGroup ref="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventAttributes"/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "parentStage") public class SAPIParentStage { @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 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