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

com.sportradar.uf.sportsapi.datamodel.DescMarket 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.XmlType;


/**
 * 

Java class for desc_market complex type. * *

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

 * <complexType name="desc_market">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="outcomes" type="{}desc_outcomes" minOccurs="0"/>
 *         <element name="specifiers" type="{}desc_specifiers" minOccurs="0"/>
 *         <element name="mappings" type="{}mappings" minOccurs="0"/>
 *         <element name="attributes" type="{}attributes" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="groups" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="includes_outcomes_of_type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="variant" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="outcome_type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "desc_market", namespace = "", propOrder = { "outcomes", "specifiers", "mappings", "attributes" }) public class DescMarket { protected DescOutcomes outcomes; protected DescSpecifiers specifiers; protected Mappings mappings; protected Attributes attributes; @XmlAttribute(name = "id", required = true) protected int id; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "groups", required = true) protected String groups; @XmlAttribute(name = "description") protected String description; @XmlAttribute(name = "includes_outcomes_of_type") protected String includesOutcomesOfType; @XmlAttribute(name = "variant") protected String variant; @XmlAttribute(name = "outcome_type") protected String outcomeType; /** * Gets the value of the outcomes property. * * @return * possible object is * {@link DescOutcomes } * */ public DescOutcomes getOutcomes() { return outcomes; } /** * Sets the value of the outcomes property. * * @param value * allowed object is * {@link DescOutcomes } * */ public void setOutcomes(DescOutcomes value) { this.outcomes = value; } /** * Gets the value of the specifiers property. * * @return * possible object is * {@link DescSpecifiers } * */ public DescSpecifiers getSpecifiers() { return specifiers; } /** * Sets the value of the specifiers property. * * @param value * allowed object is * {@link DescSpecifiers } * */ public void setSpecifiers(DescSpecifiers value) { this.specifiers = value; } /** * Gets the value of the mappings property. * * @return * possible object is * {@link Mappings } * */ public Mappings getMappings() { return mappings; } /** * Sets the value of the mappings property. * * @param value * allowed object is * {@link Mappings } * */ public void setMappings(Mappings value) { this.mappings = value; } /** * Gets the value of the attributes property. * * @return * possible object is * {@link Attributes } * */ public Attributes getAttributes() { return attributes; } /** * Sets the value of the attributes property. * * @param value * allowed object is * {@link Attributes } * */ public void setAttributes(Attributes value) { this.attributes = value; } /** * Gets the value of the id property. * */ public int getId() { return id; } /** * Sets the value of the id property. * */ public void setId(int value) { this.id = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the groups property. * * @return * possible object is * {@link String } * */ public String getGroups() { return groups; } /** * Sets the value of the groups property. * * @param value * allowed object is * {@link String } * */ public void setGroups(String value) { this.groups = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the includesOutcomesOfType property. * * @return * possible object is * {@link String } * */ public String getIncludesOutcomesOfType() { return includesOutcomesOfType; } /** * Sets the value of the includesOutcomesOfType property. * * @param value * allowed object is * {@link String } * */ public void setIncludesOutcomesOfType(String value) { this.includesOutcomesOfType = value; } /** * Gets the value of the variant property. * * @return * possible object is * {@link String } * */ public String getVariant() { return variant; } /** * Sets the value of the variant property. * * @param value * allowed object is * {@link String } * */ public void setVariant(String value) { this.variant = value; } /** * Gets the value of the outcomeType property. * * @return * possible object is * {@link String } * */ public String getOutcomeType() { return outcomeType; } /** * Sets the value of the outcomeType property. * * @param value * allowed object is * {@link String } * */ public void setOutcomeType(String value) { this.outcomeType = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy