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

com.sportradar.uf.datamodel.UFPeriodScoreType 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.datamodel;

import java.math.BigDecimal;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import com.sportradar.unifiedodds.sdk.oddsentities.UnmarshalledMessage;


/**
 * 

Java class for periodScoreType complex type. * *

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

 * <complexType name="periodScoreType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="match_status_code" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="number" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="home_score" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *       <attribute name="away_score" use="required" type="{http://www.w3.org/2001/XMLSchema}decimal" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "periodScoreType") public class UFPeriodScoreType implements UnmarshalledMessage { @XmlAttribute(name = "match_status_code", required = true) protected int matchStatusCode; @XmlAttribute(name = "number", required = true) protected int number; @XmlAttribute(name = "home_score", required = true) protected BigDecimal homeScore; @XmlAttribute(name = "away_score", required = true) protected BigDecimal awayScore; /** * Gets the value of the matchStatusCode property. * */ public int getMatchStatusCode() { return matchStatusCode; } /** * Sets the value of the matchStatusCode property. * */ public void setMatchStatusCode(int value) { this.matchStatusCode = value; } /** * Gets the value of the number property. * */ public int getNumber() { return number; } /** * Sets the value of the number property. * */ public void setNumber(int value) { this.number = value; } /** * Gets the value of the homeScore property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getHomeScore() { return homeScore; } /** * Sets the value of the homeScore property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setHomeScore(BigDecimal value) { this.homeScore = value; } /** * Gets the value of the awayScore property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getAwayScore() { return awayScore; } /** * Sets the value of the awayScore property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setAwayScore(BigDecimal value) { this.awayScore = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy