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

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

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

 * <complexType name="matchRound">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="number" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="group_long_name" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="group" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="group_id" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="cup_round_matches" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="cup_round_match_number" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="other_match_id" type="{http://schemas.sportradar.com/sportsapi/v1/unified}matchUrn" />
 *       <attribute name="betradar_id" type="{http://www.w3.org/2001/XMLSchema}int" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "matchRound") public class SAPIMatchRound { @XmlAttribute(name = "type") protected String type; @XmlAttribute(name = "number") protected Integer number; @XmlAttribute(name = "name") protected String name; @XmlAttribute(name = "group_long_name") protected String groupLongName; @XmlAttribute(name = "group") protected String group; @XmlAttribute(name = "group_id") protected String groupId; @XmlAttribute(name = "cup_round_matches") protected Integer cupRoundMatches; @XmlAttribute(name = "cup_round_match_number") protected Integer cupRoundMatchNumber; @XmlAttribute(name = "other_match_id") protected String otherMatchId; @XmlAttribute(name = "betradar_id") protected Integer betradarId; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link Integer } * */ public Integer getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link Integer } * */ public void setNumber(Integer value) { this.number = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the groupLongName property. * * @return * possible object is * {@link String } * */ public String getGroupLongName() { return groupLongName; } /** * Sets the value of the groupLongName property. * * @param value * allowed object is * {@link String } * */ public void setGroupLongName(String value) { this.groupLongName = value; } /** * Gets the value of the group property. * * @return * possible object is * {@link String } * */ public String getGroup() { return group; } /** * Sets the value of the group property. * * @param value * allowed object is * {@link String } * */ public void setGroup(String value) { this.group = value; } /** * Gets the value of the groupId property. * * @return * possible object is * {@link String } * */ public String getGroupId() { return groupId; } /** * Sets the value of the groupId property. * * @param value * allowed object is * {@link String } * */ public void setGroupId(String value) { this.groupId = value; } /** * Gets the value of the cupRoundMatches property. * * @return * possible object is * {@link Integer } * */ public Integer getCupRoundMatches() { return cupRoundMatches; } /** * Sets the value of the cupRoundMatches property. * * @param value * allowed object is * {@link Integer } * */ public void setCupRoundMatches(Integer value) { this.cupRoundMatches = value; } /** * Gets the value of the cupRoundMatchNumber property. * * @return * possible object is * {@link Integer } * */ public Integer getCupRoundMatchNumber() { return cupRoundMatchNumber; } /** * Sets the value of the cupRoundMatchNumber property. * * @param value * allowed object is * {@link Integer } * */ public void setCupRoundMatchNumber(Integer value) { this.cupRoundMatchNumber = value; } /** * Gets the value of the otherMatchId property. * * @return * possible object is * {@link String } * */ public String getOtherMatchId() { return otherMatchId; } /** * Sets the value of the otherMatchId property. * * @param value * allowed object is * {@link String } * */ public void setOtherMatchId(String value) { this.otherMatchId = value; } /** * Gets the value of the betradarId property. * * @return * possible object is * {@link Integer } * */ public Integer getBetradarId() { return betradarId; } /** * Sets the value of the betradarId property. * * @param value * allowed object is * {@link Integer } * */ public void setBetradarId(Integer value) { this.betradarId = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy