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

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

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

 * <complexType name="weatherInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="temperature_celsius" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="wind" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="wind_advantage" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="pitch" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="weather_conditions" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "weatherInfo") public class SAPIWeatherInfo { @XmlAttribute(name = "temperature_celsius") protected Integer temperatureCelsius; @XmlAttribute(name = "wind") protected String wind; @XmlAttribute(name = "wind_advantage") protected String windAdvantage; @XmlAttribute(name = "pitch") protected String pitch; @XmlAttribute(name = "weather_conditions") protected String weatherConditions; /** * Gets the value of the temperatureCelsius property. * * @return * possible object is * {@link Integer } * */ public Integer getTemperatureCelsius() { return temperatureCelsius; } /** * Sets the value of the temperatureCelsius property. * * @param value * allowed object is * {@link Integer } * */ public void setTemperatureCelsius(Integer value) { this.temperatureCelsius = value; } /** * Gets the value of the wind property. * * @return * possible object is * {@link String } * */ public String getWind() { return wind; } /** * Sets the value of the wind property. * * @param value * allowed object is * {@link String } * */ public void setWind(String value) { this.wind = value; } /** * Gets the value of the windAdvantage property. * * @return * possible object is * {@link String } * */ public String getWindAdvantage() { return windAdvantage; } /** * Sets the value of the windAdvantage property. * * @param value * allowed object is * {@link String } * */ public void setWindAdvantage(String value) { this.windAdvantage = value; } /** * Gets the value of the pitch property. * * @return * possible object is * {@link String } * */ public String getPitch() { return pitch; } /** * Sets the value of the pitch property. * * @param value * allowed object is * {@link String } * */ public void setPitch(String value) { this.pitch = value; } /** * Gets the value of the weatherConditions property. * * @return * possible object is * {@link String } * */ public String getWeatherConditions() { return weatherConditions; } /** * Sets the value of the weatherConditions property. * * @param value * allowed object is * {@link String } * */ public void setWeatherConditions(String value) { this.weatherConditions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy