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

com.sportradar.uf.sportsapi.datamodel.SAPICompetitorProfileEndpoint 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for competitorProfileEndpoint complex type. * *

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

 * <complexType name="competitorProfileEndpoint">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="competitor" type="{http://schemas.sportradar.com/sportsapi/v1/unified}teamExtended"/>
 *         <element name="venue" type="{http://schemas.sportradar.com/sportsapi/v1/unified}venue" minOccurs="0"/>
 *         <element name="jerseys" type="{http://schemas.sportradar.com/sportsapi/v1/unified}jerseys" minOccurs="0"/>
 *         <element name="manager" type="{http://schemas.sportradar.com/sportsapi/v1/unified}manager" minOccurs="0"/>
 *         <element name="players" type="{http://schemas.sportradar.com/sportsapi/v1/unified}players" minOccurs="0"/>
 *         <element name="race_driver_profile" type="{http://schemas.sportradar.com/sportsapi/v1/unified}raceDriverProfile" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="generated_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "competitorProfileEndpoint", propOrder = { "competitor", "venue", "jerseys", "manager", "players", "raceDriverProfile" }) public class SAPICompetitorProfileEndpoint { @XmlElement(required = true) protected SAPITeamExtended competitor; protected SAPIVenue venue; protected SAPIJerseys jerseys; protected SAPIManager manager; protected SAPIPlayers players; @XmlElement(name = "race_driver_profile") protected SAPIRaceDriverProfile raceDriverProfile; @XmlAttribute(name = "generated_at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar generatedAt; /** * Gets the value of the competitor property. * * @return * possible object is * {@link SAPITeamExtended } * */ public SAPITeamExtended getCompetitor() { return competitor; } /** * Sets the value of the competitor property. * * @param value * allowed object is * {@link SAPITeamExtended } * */ public void setCompetitor(SAPITeamExtended value) { this.competitor = 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 jerseys property. * * @return * possible object is * {@link SAPIJerseys } * */ public SAPIJerseys getJerseys() { return jerseys; } /** * Sets the value of the jerseys property. * * @param value * allowed object is * {@link SAPIJerseys } * */ public void setJerseys(SAPIJerseys value) { this.jerseys = value; } /** * Gets the value of the manager property. * * @return * possible object is * {@link SAPIManager } * */ public SAPIManager getManager() { return manager; } /** * Sets the value of the manager property. * * @param value * allowed object is * {@link SAPIManager } * */ public void setManager(SAPIManager value) { this.manager = value; } /** * Gets the value of the players property. * * @return * possible object is * {@link SAPIPlayers } * */ public SAPIPlayers getPlayers() { return players; } /** * Sets the value of the players property. * * @param value * allowed object is * {@link SAPIPlayers } * */ public void setPlayers(SAPIPlayers value) { this.players = value; } /** * Gets the value of the raceDriverProfile property. * * @return * possible object is * {@link SAPIRaceDriverProfile } * */ public SAPIRaceDriverProfile getRaceDriverProfile() { return raceDriverProfile; } /** * Sets the value of the raceDriverProfile property. * * @param value * allowed object is * {@link SAPIRaceDriverProfile } * */ public void setRaceDriverProfile(SAPIRaceDriverProfile value) { this.raceDriverProfile = value; } /** * Gets the value of the generatedAt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getGeneratedAt() { return generatedAt; } /** * Sets the value of the generatedAt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setGeneratedAt(XMLGregorianCalendar value) { this.generatedAt = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy