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

com.sportradar.uf.sportsapi.datamodel.SAPIStageSportEventStatus 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.XmlType;


/**
 * 

Java class for stageSportEventStatus complex type. * *

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

 * <complexType name="stageSportEventStatus">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="results" type="{http://schemas.sportradar.com/sportsapi/v1/unified}stageResult" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="status" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="winner_id" type="{http://schemas.sportradar.com/sportsapi/v1/unified}unifiedCompetitorUrn" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "stageSportEventStatus", propOrder = { "results" }) public class SAPIStageSportEventStatus { protected SAPIStageResult results; @XmlAttribute(name = "status") protected String status; @XmlAttribute(name = "winner_id") protected String winnerId; /** * Gets the value of the results property. * * @return * possible object is * {@link SAPIStageResult } * */ public SAPIStageResult getResults() { return results; } /** * Sets the value of the results property. * * @param value * allowed object is * {@link SAPIStageResult } * */ public void setResults(SAPIStageResult value) { this.results = 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 winnerId property. * * @return * possible object is * {@link String } * */ public String getWinnerId() { return winnerId; } /** * Sets the value of the winnerId property. * * @param value * allowed object is * {@link String } * */ public void setWinnerId(String value) { this.winnerId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy