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

com.sportradar.uf.datamodel.UFStatisticsScoreType 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 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 statisticsScoreType complex type. * *

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

 * <complexType name="statisticsScoreType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="home" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="away" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "statisticsScoreType") public class UFStatisticsScoreType implements UnmarshalledMessage { @XmlAttribute(name = "home", required = true) protected int home; @XmlAttribute(name = "away", required = true) protected int away; /** * Gets the value of the home property. * */ public int getHome() { return home; } /** * Sets the value of the home property. * */ public void setHome(int value) { this.home = value; } /** * Gets the value of the away property. * */ public int getAway() { return away; } /** * Sets the value of the away property. * */ public void setAway(int value) { this.away = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy