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

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

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

 * <complexType name="commonSportEventStatus">
 *   <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" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "commonSportEventStatus") public class SAPICommonSportEventStatus 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; /** * 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy