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

com.sportradar.uf.datamodel.UFStatisticsType 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
import com.sportradar.unifiedodds.sdk.oddsentities.UnmarshalledMessage;


/**
 * 

Java class for statisticsType complex type. * *

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

 * <complexType name="statisticsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="yellow_cards" type="{}statisticsScoreType" minOccurs="0"/>
 *         <element name="red_cards" type="{}statisticsScoreType" minOccurs="0"/>
 *         <element name="yellow_red_cards" type="{}statisticsScoreType" minOccurs="0"/>
 *         <element name="corners" type="{}statisticsScoreType" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "statisticsType", propOrder = { "yellowCards", "redCards", "yellowRedCards", "corners" }) public class UFStatisticsType implements UnmarshalledMessage { @XmlElement(name = "yellow_cards") protected UFStatisticsScoreType yellowCards; @XmlElement(name = "red_cards") protected UFStatisticsScoreType redCards; @XmlElement(name = "yellow_red_cards") protected UFStatisticsScoreType yellowRedCards; protected UFStatisticsScoreType corners; /** * Gets the value of the yellowCards property. * * @return * possible object is * {@link UFStatisticsScoreType } * */ public UFStatisticsScoreType getYellowCards() { return yellowCards; } /** * Sets the value of the yellowCards property. * * @param value * allowed object is * {@link UFStatisticsScoreType } * */ public void setYellowCards(UFStatisticsScoreType value) { this.yellowCards = value; } /** * Gets the value of the redCards property. * * @return * possible object is * {@link UFStatisticsScoreType } * */ public UFStatisticsScoreType getRedCards() { return redCards; } /** * Sets the value of the redCards property. * * @param value * allowed object is * {@link UFStatisticsScoreType } * */ public void setRedCards(UFStatisticsScoreType value) { this.redCards = value; } /** * Gets the value of the yellowRedCards property. * * @return * possible object is * {@link UFStatisticsScoreType } * */ public UFStatisticsScoreType getYellowRedCards() { return yellowRedCards; } /** * Sets the value of the yellowRedCards property. * * @param value * allowed object is * {@link UFStatisticsScoreType } * */ public void setYellowRedCards(UFStatisticsScoreType value) { this.yellowRedCards = value; } /** * Gets the value of the corners property. * * @return * possible object is * {@link UFStatisticsScoreType } * */ public UFStatisticsScoreType getCorners() { return corners; } /** * Sets the value of the corners property. * * @param value * allowed object is * {@link UFStatisticsScoreType } * */ public void setCorners(UFStatisticsScoreType value) { this.corners = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy