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

com.sportradar.uf.sportsapi.datamodel.BookmakerDetails 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">
 *       <all>
 *         <element name="message" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </all>
 *       <attribute name="response_code" type="{}response_code" />
 *       <attribute name="expire_at" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
 *       <attribute name="bookmaker_id" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="virtual_host" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "bookmaker_details", namespace = "") public class BookmakerDetails { @XmlElement(namespace = "", required = true) protected String message; @XmlAttribute(name = "response_code") protected ResponseCode responseCode; @XmlAttribute(name = "expire_at") @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar expireAt; @XmlAttribute(name = "bookmaker_id") protected Integer bookmakerId; @XmlAttribute(name = "virtual_host") protected String virtualHost; /** * Gets the value of the message property. * * @return * possible object is * {@link String } * */ public String getMessage() { return message; } /** * Sets the value of the message property. * * @param value * allowed object is * {@link String } * */ public void setMessage(String value) { this.message = value; } /** * Gets the value of the responseCode property. * * @return * possible object is * {@link ResponseCode } * */ public ResponseCode getResponseCode() { return responseCode; } /** * Sets the value of the responseCode property. * * @param value * allowed object is * {@link ResponseCode } * */ public void setResponseCode(ResponseCode value) { this.responseCode = value; } /** * Gets the value of the expireAt property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getExpireAt() { return expireAt; } /** * Sets the value of the expireAt property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setExpireAt(XMLGregorianCalendar value) { this.expireAt = value; } /** * Gets the value of the bookmakerId property. * * @return * possible object is * {@link Integer } * */ public Integer getBookmakerId() { return bookmakerId; } /** * Sets the value of the bookmakerId property. * * @param value * allowed object is * {@link Integer } * */ public void setBookmakerId(Integer value) { this.bookmakerId = value; } /** * Gets the value of the virtualHost property. * * @return * possible object is * {@link String } * */ public String getVirtualHost() { return virtualHost; } /** * Sets the value of the virtualHost property. * * @param value * allowed object is * {@link String } * */ public void setVirtualHost(String value) { this.virtualHost = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy