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

com.sportradar.uf.sportsapi.datamodel.SAPIJersey 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 jersey complex type. * *

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

 * <complexType name="jersey">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="base" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sleeve" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="number" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="stripes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="stripes_color" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="horizontal_stripes" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="horizontal_stripes_color" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="squares" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="squares_color" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="split" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="split_color" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="shirt_type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sleeve_detail" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "jersey") public class SAPIJersey { @XmlAttribute(name = "type", required = true) protected String type; @XmlAttribute(name = "base", required = true) protected String base; @XmlAttribute(name = "sleeve", required = true) protected String sleeve; @XmlAttribute(name = "number", required = true) protected String number; @XmlAttribute(name = "stripes") protected Boolean stripes; @XmlAttribute(name = "stripes_color") protected String stripesColor; @XmlAttribute(name = "horizontal_stripes") protected Boolean horizontalStripes; @XmlAttribute(name = "horizontal_stripes_color") protected String horizontalStripesColor; @XmlAttribute(name = "squares") protected Boolean squares; @XmlAttribute(name = "squares_color") protected String squaresColor; @XmlAttribute(name = "split") protected Boolean split; @XmlAttribute(name = "split_color") protected String splitColor; @XmlAttribute(name = "shirt_type") protected String shirtType; @XmlAttribute(name = "sleeve_detail") protected String sleeveDetail; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** * Gets the value of the sleeve property. * * @return * possible object is * {@link String } * */ public String getSleeve() { return sleeve; } /** * Sets the value of the sleeve property. * * @param value * allowed object is * {@link String } * */ public void setSleeve(String value) { this.sleeve = value; } /** * Gets the value of the number property. * * @return * possible object is * {@link String } * */ public String getNumber() { return number; } /** * Sets the value of the number property. * * @param value * allowed object is * {@link String } * */ public void setNumber(String value) { this.number = value; } /** * Gets the value of the stripes property. * * @return * possible object is * {@link Boolean } * */ public Boolean isStripes() { return stripes; } /** * Sets the value of the stripes property. * * @param value * allowed object is * {@link Boolean } * */ public void setStripes(Boolean value) { this.stripes = value; } /** * Gets the value of the stripesColor property. * * @return * possible object is * {@link String } * */ public String getStripesColor() { return stripesColor; } /** * Sets the value of the stripesColor property. * * @param value * allowed object is * {@link String } * */ public void setStripesColor(String value) { this.stripesColor = value; } /** * Gets the value of the horizontalStripes property. * * @return * possible object is * {@link Boolean } * */ public Boolean isHorizontalStripes() { return horizontalStripes; } /** * Sets the value of the horizontalStripes property. * * @param value * allowed object is * {@link Boolean } * */ public void setHorizontalStripes(Boolean value) { this.horizontalStripes = value; } /** * Gets the value of the horizontalStripesColor property. * * @return * possible object is * {@link String } * */ public String getHorizontalStripesColor() { return horizontalStripesColor; } /** * Sets the value of the horizontalStripesColor property. * * @param value * allowed object is * {@link String } * */ public void setHorizontalStripesColor(String value) { this.horizontalStripesColor = value; } /** * Gets the value of the squares property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSquares() { return squares; } /** * Sets the value of the squares property. * * @param value * allowed object is * {@link Boolean } * */ public void setSquares(Boolean value) { this.squares = value; } /** * Gets the value of the squaresColor property. * * @return * possible object is * {@link String } * */ public String getSquaresColor() { return squaresColor; } /** * Sets the value of the squaresColor property. * * @param value * allowed object is * {@link String } * */ public void setSquaresColor(String value) { this.squaresColor = value; } /** * Gets the value of the split property. * * @return * possible object is * {@link Boolean } * */ public Boolean isSplit() { return split; } /** * Sets the value of the split property. * * @param value * allowed object is * {@link Boolean } * */ public void setSplit(Boolean value) { this.split = value; } /** * Gets the value of the splitColor property. * * @return * possible object is * {@link String } * */ public String getSplitColor() { return splitColor; } /** * Sets the value of the splitColor property. * * @param value * allowed object is * {@link String } * */ public void setSplitColor(String value) { this.splitColor = value; } /** * Gets the value of the shirtType property. * * @return * possible object is * {@link String } * */ public String getShirtType() { return shirtType; } /** * Sets the value of the shirtType property. * * @param value * allowed object is * {@link String } * */ public void setShirtType(String value) { this.shirtType = value; } /** * Gets the value of the sleeveDetail property. * * @return * possible object is * {@link String } * */ public String getSleeveDetail() { return sleeveDetail; } /** * Sets the value of the sleeveDetail property. * * @param value * allowed object is * {@link String } * */ public void setSleeveDetail(String value) { this.sleeveDetail = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy