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

com.sportradar.uf.sportsapi.datamodel.SAPITeamExtended 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.XmlType;


/**
 * 

Java class for teamExtended complex type. * *

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

 * <complexType name="teamExtended">
 *   <complexContent>
 *     <extension base="{http://schemas.sportradar.com/sportsapi/v1/unified}team">
 *       <sequence>
 *         <element name="sport" type="{http://schemas.sportradar.com/sportsapi/v1/unified}sport" minOccurs="0"/>
 *         <element name="category" type="{http://schemas.sportradar.com/sportsapi/v1/unified}category" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "teamExtended", propOrder = { "sport", "category" }) public class SAPITeamExtended extends SAPITeam { protected SAPISport sport; protected SAPICategory category; /** * Gets the value of the sport property. * * @return * possible object is * {@link SAPISport } * */ public SAPISport getSport() { return sport; } /** * Sets the value of the sport property. * * @param value * allowed object is * {@link SAPISport } * */ public void setSport(SAPISport value) { this.sport = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link SAPICategory } * */ public SAPICategory getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link SAPICategory } * */ public void setCategory(SAPICategory value) { this.category = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy