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

com.sportradar.uf.custombet.datamodel.CAPIAvailableSelections 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:03 PM CEST 
//


package com.sportradar.uf.custombet.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.XmlType;


/**
 * 

Java class for AvailableSelectionsType complex type. * *

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

 * <complexType name="AvailableSelectionsType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="event" type="{http://schemas.sportradar.com/custombet/v1/endpoints}EventType"/>
 *       </sequence>
 *       <attribute name="generated_at" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AvailableSelectionsType", propOrder = { "event" }) @XmlRootElement(name = "available_selections") public class CAPIAvailableSelections { @XmlElement(required = true) protected CAPIEventType event; @XmlAttribute(name = "generated_at", required = true) protected String generatedAt; /** * Gets the value of the event property. * * @return * possible object is * {@link CAPIEventType } * */ public CAPIEventType getEvent() { return event; } /** * Sets the value of the event property. * * @param value * allowed object is * {@link CAPIEventType } * */ public void setEvent(CAPIEventType value) { this.event = value; } /** * Gets the value of the generatedAt property. * * @return * possible object is * {@link String } * */ public String getGeneratedAt() { return generatedAt; } /** * Sets the value of the generatedAt property. * * @param value * allowed object is * {@link String } * */ public void setGeneratedAt(String value) { this.generatedAt = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy