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

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

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

 * <complexType name="seasonCoverageInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="season_id" use="required" type="{http://schemas.sportradar.com/sportsapi/v1/unified}seasonUrn" />
 *       <attribute name="scheduled" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="played" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="max_coverage_level" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="max_covered" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="min_coverage_level" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "seasonCoverageInfo") public class SAPISeasonCoverageInfo { @XmlAttribute(name = "season_id", required = true) protected String seasonId; @XmlAttribute(name = "scheduled", required = true) protected int scheduled; @XmlAttribute(name = "played", required = true) protected int played; @XmlAttribute(name = "max_coverage_level") protected String maxCoverageLevel; @XmlAttribute(name = "max_covered") protected Integer maxCovered; @XmlAttribute(name = "min_coverage_level") protected String minCoverageLevel; /** * Gets the value of the seasonId property. * * @return * possible object is * {@link String } * */ public String getSeasonId() { return seasonId; } /** * Sets the value of the seasonId property. * * @param value * allowed object is * {@link String } * */ public void setSeasonId(String value) { this.seasonId = value; } /** * Gets the value of the scheduled property. * */ public int getScheduled() { return scheduled; } /** * Sets the value of the scheduled property. * */ public void setScheduled(int value) { this.scheduled = value; } /** * Gets the value of the played property. * */ public int getPlayed() { return played; } /** * Sets the value of the played property. * */ public void setPlayed(int value) { this.played = value; } /** * Gets the value of the maxCoverageLevel property. * * @return * possible object is * {@link String } * */ public String getMaxCoverageLevel() { return maxCoverageLevel; } /** * Sets the value of the maxCoverageLevel property. * * @param value * allowed object is * {@link String } * */ public void setMaxCoverageLevel(String value) { this.maxCoverageLevel = value; } /** * Gets the value of the maxCovered property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxCovered() { return maxCovered; } /** * Sets the value of the maxCovered property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxCovered(Integer value) { this.maxCovered = value; } /** * Gets the value of the minCoverageLevel property. * * @return * possible object is * {@link String } * */ public String getMinCoverageLevel() { return minCoverageLevel; } /** * Sets the value of the minCoverageLevel property. * * @param value * allowed object is * {@link String } * */ public void setMinCoverageLevel(String value) { this.minCoverageLevel = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy