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

com.sportradar.uf.sportsapi.datamodel.SAPISportEventConditions 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for sportEventConditions complex type. * *

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

 * <complexType name="sportEventConditions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="referee" type="{http://schemas.sportradar.com/sportsapi/v1/unified}referee" minOccurs="0"/>
 *         <element name="pitchers" type="{http://schemas.sportradar.com/sportsapi/v1/unified}pitchers" minOccurs="0"/>
 *         <element name="venue" type="{http://schemas.sportradar.com/sportsapi/v1/unified}venue" minOccurs="0"/>
 *         <element name="weather_info" type="{http://schemas.sportradar.com/sportsapi/v1/unified}weatherInfo" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="attendance" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="match_mode" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "sportEventConditions", propOrder = { "referee", "pitchers", "venue", "weatherInfo" }) public class SAPISportEventConditions { protected SAPIReferee referee; protected SAPIPitchers pitchers; protected SAPIVenue venue; @XmlElement(name = "weather_info") protected SAPIWeatherInfo weatherInfo; @XmlAttribute(name = "attendance") protected String attendance; @XmlAttribute(name = "match_mode") protected String matchMode; /** * Gets the value of the referee property. * * @return * possible object is * {@link SAPIReferee } * */ public SAPIReferee getReferee() { return referee; } /** * Sets the value of the referee property. * * @param value * allowed object is * {@link SAPIReferee } * */ public void setReferee(SAPIReferee value) { this.referee = value; } /** * Gets the value of the pitchers property. * * @return * possible object is * {@link SAPIPitchers } * */ public SAPIPitchers getPitchers() { return pitchers; } /** * Sets the value of the pitchers property. * * @param value * allowed object is * {@link SAPIPitchers } * */ public void setPitchers(SAPIPitchers value) { this.pitchers = value; } /** * Gets the value of the venue property. * * @return * possible object is * {@link SAPIVenue } * */ public SAPIVenue getVenue() { return venue; } /** * Sets the value of the venue property. * * @param value * allowed object is * {@link SAPIVenue } * */ public void setVenue(SAPIVenue value) { this.venue = value; } /** * Gets the value of the weatherInfo property. * * @return * possible object is * {@link SAPIWeatherInfo } * */ public SAPIWeatherInfo getWeatherInfo() { return weatherInfo; } /** * Sets the value of the weatherInfo property. * * @param value * allowed object is * {@link SAPIWeatherInfo } * */ public void setWeatherInfo(SAPIWeatherInfo value) { this.weatherInfo = value; } /** * Gets the value of the attendance property. * * @return * possible object is * {@link String } * */ public String getAttendance() { return attendance; } /** * Sets the value of the attendance property. * * @param value * allowed object is * {@link String } * */ public void setAttendance(String value) { this.attendance = value; } /** * Gets the value of the matchMode property. * * @return * possible object is * {@link String } * */ public String getMatchMode() { return matchMode; } /** * Sets the value of the matchMode property. * * @param value * allowed object is * {@link String } * */ public void setMatchMode(String value) { this.matchMode = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy