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

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


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="draw_fixture" type="{http://schemas.sportradar.com/sportsapi/v1/unified}draw_fixture"/>
 *       </sequence>
 *       <attribute name="generated_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "drawFixture" }) @XmlRootElement(name = "draw_fixtures") public class SAPIDrawFixtures { @XmlElement(name = "draw_fixture", required = true) protected SAPIDrawFixture drawFixture; @XmlAttribute(name = "generated_at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar generatedAt; /** * Gets the value of the drawFixture property. * * @return * possible object is * {@link SAPIDrawFixture } * */ public SAPIDrawFixture getDrawFixture() { return drawFixture; } /** * Sets the value of the drawFixture property. * * @param value * allowed object is * {@link SAPIDrawFixture } * */ public void setDrawFixture(SAPIDrawFixture value) { this.drawFixture = 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