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

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

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

 * <complexType name="sportEventStatus">
 *   <complexContent>
 *     <extension base="{http://schemas.sportradar.com/sportsapi/v1/unified}sportEventStatusBase">
 *       <attribute name="home_score" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="away_score" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="aggregate_home_score" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="aggregate_away_score" type="{http://www.w3.org/2001/XMLSchema}double" />
 *       <attribute name="aggregate_winner_id" type="{http://schemas.sportradar.com/sportsapi/v1/unified}competitorUrn" />
 *       <attribute name="status_code" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="match_status_code" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sportEventStatus") public class SAPISportEventStatus extends SAPISportEventStatusBase { @XmlAttribute(name = "home_score") protected Double homeScore; @XmlAttribute(name = "away_score") protected Double awayScore; @XmlAttribute(name = "aggregate_home_score") protected Double aggregateHomeScore; @XmlAttribute(name = "aggregate_away_score") protected Double aggregateAwayScore; @XmlAttribute(name = "aggregate_winner_id") protected String aggregateWinnerId; @XmlAttribute(name = "status_code") protected Integer statusCode; @XmlAttribute(name = "match_status_code") protected Integer matchStatusCode; /** * Gets the value of the homeScore property. * * @return * possible object is * {@link Double } * */ public Double getHomeScore() { return homeScore; } /** * Sets the value of the homeScore property. * * @param value * allowed object is * {@link Double } * */ public void setHomeScore(Double value) { this.homeScore = value; } /** * Gets the value of the awayScore property. * * @return * possible object is * {@link Double } * */ public Double getAwayScore() { return awayScore; } /** * Sets the value of the awayScore property. * * @param value * allowed object is * {@link Double } * */ public void setAwayScore(Double value) { this.awayScore = value; } /** * Gets the value of the aggregateHomeScore property. * * @return * possible object is * {@link Double } * */ public Double getAggregateHomeScore() { return aggregateHomeScore; } /** * Sets the value of the aggregateHomeScore property. * * @param value * allowed object is * {@link Double } * */ public void setAggregateHomeScore(Double value) { this.aggregateHomeScore = value; } /** * Gets the value of the aggregateAwayScore property. * * @return * possible object is * {@link Double } * */ public Double getAggregateAwayScore() { return aggregateAwayScore; } /** * Sets the value of the aggregateAwayScore property. * * @param value * allowed object is * {@link Double } * */ public void setAggregateAwayScore(Double value) { this.aggregateAwayScore = value; } /** * Gets the value of the aggregateWinnerId property. * * @return * possible object is * {@link String } * */ public String getAggregateWinnerId() { return aggregateWinnerId; } /** * Sets the value of the aggregateWinnerId property. * * @param value * allowed object is * {@link String } * */ public void setAggregateWinnerId(String value) { this.aggregateWinnerId = value; } /** * Gets the value of the statusCode property. * * @return * possible object is * {@link Integer } * */ public Integer getStatusCode() { return statusCode; } /** * Sets the value of the statusCode property. * * @param value * allowed object is * {@link Integer } * */ public void setStatusCode(Integer value) { this.statusCode = value; } /** * Gets the value of the matchStatusCode property. * * @return * possible object is * {@link Integer } * */ public Integer getMatchStatusCode() { return matchStatusCode; } /** * Sets the value of the matchStatusCode property. * * @param value * allowed object is * {@link Integer } * */ public void setMatchStatusCode(Integer value) { this.matchStatusCode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy