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

com.sportradar.uf.sportsapi.datamodel.SAPIProductInfo 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for productInfo complex type. * *

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

 * <complexType name="productInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="streaming" type="{http://schemas.sportradar.com/sportsapi/v1/unified}streamingChannels" minOccurs="0"/>
 *         <element name="is_in_live_score" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="is_in_hosted_statistics" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="is_in_live_center_soccer" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="is_auto_traded" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
 *         <element name="links" type="{http://schemas.sportradar.com/sportsapi/v1/unified}productInfoLinks" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "productInfo", propOrder = { "streaming", "isInLiveScore", "isInHostedStatistics", "isInLiveCenterSoccer", "isAutoTraded", "links" }) public class SAPIProductInfo { protected SAPIStreamingChannels streaming; @XmlElement(name = "is_in_live_score") protected Object isInLiveScore; @XmlElement(name = "is_in_hosted_statistics") protected Object isInHostedStatistics; @XmlElement(name = "is_in_live_center_soccer") protected Object isInLiveCenterSoccer; @XmlElement(name = "is_auto_traded") protected Object isAutoTraded; protected SAPIProductInfoLinks links; /** * Gets the value of the streaming property. * * @return * possible object is * {@link SAPIStreamingChannels } * */ public SAPIStreamingChannels getStreaming() { return streaming; } /** * Sets the value of the streaming property. * * @param value * allowed object is * {@link SAPIStreamingChannels } * */ public void setStreaming(SAPIStreamingChannels value) { this.streaming = value; } /** * Gets the value of the isInLiveScore property. * * @return * possible object is * {@link Object } * */ public Object getIsInLiveScore() { return isInLiveScore; } /** * Sets the value of the isInLiveScore property. * * @param value * allowed object is * {@link Object } * */ public void setIsInLiveScore(Object value) { this.isInLiveScore = value; } /** * Gets the value of the isInHostedStatistics property. * * @return * possible object is * {@link Object } * */ public Object getIsInHostedStatistics() { return isInHostedStatistics; } /** * Sets the value of the isInHostedStatistics property. * * @param value * allowed object is * {@link Object } * */ public void setIsInHostedStatistics(Object value) { this.isInHostedStatistics = value; } /** * Gets the value of the isInLiveCenterSoccer property. * * @return * possible object is * {@link Object } * */ public Object getIsInLiveCenterSoccer() { return isInLiveCenterSoccer; } /** * Sets the value of the isInLiveCenterSoccer property. * * @param value * allowed object is * {@link Object } * */ public void setIsInLiveCenterSoccer(Object value) { this.isInLiveCenterSoccer = value; } /** * Gets the value of the isAutoTraded property. * * @return * possible object is * {@link Object } * */ public Object getIsAutoTraded() { return isAutoTraded; } /** * Sets the value of the isAutoTraded property. * * @param value * allowed object is * {@link Object } * */ public void setIsAutoTraded(Object value) { this.isAutoTraded = value; } /** * Gets the value of the links property. * * @return * possible object is * {@link SAPIProductInfoLinks } * */ public SAPIProductInfoLinks getLinks() { return links; } /** * Sets the value of the links property. * * @param value * allowed object is * {@link SAPIProductInfoLinks } * */ public void setLinks(SAPIProductInfoLinks value) { this.links = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy