//
// Este arquivo foi gerado pela Arquitetura JavaTM para Implementação de Referência (JAXB) de Bind XML, v2.2.8-b130911.1802
// Consulte <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Todas as modificações neste arquivo serão perdidas após a recompilação do esquema de origem.
// Gerado em: 2017.05.16 às 03:29:54 PM BRT
//

package br.ufsc.esus.problemacondicaoavaliacaoai;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import java.util.ArrayList;
import java.util.List;

/**
 * <p>Classe Java de problemaCondicaoAvaliacaoAITransport complex type.
 *
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
 *
 * <pre>
 * &lt;complexType name="problemaCondicaoAvaliacaoAITransport">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="ciaps" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="outroCiap1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="outroCiap2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="cid10" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="cid10_2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "problemaCondicaoAvaliacaoAITransport", propOrder = {
  "ciaps",
  "outroCiap1",
  "outroCiap2",
  "cid10",
  "cid102"
})
public class ProblemaCondicaoAvaliacaoAITransport {

  protected List<String> ciaps;
  protected String outroCiap1;
  protected String outroCiap2;
  protected String cid10;
  @XmlElement(name = "cid10_2")
  protected String cid102;

  /**
   * Gets the value of the ciaps property.
   *
   * <p>
   * This accessor method returns a reference to the live list,
   * not a snapshot. Therefore any modification you make to the
   * returned list will be present inside the JAXB object.
   * This is why there is not a <CODE>set</CODE> method for the ciaps property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getCiaps().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link String }
   */
  public List<String> getCiaps() {
    if (ciaps == null) {
      ciaps = new ArrayList<>();
    }
    return this.ciaps;
  }

  /**
   * Obtém o valor da propriedade outroCiap1.
   *
   * @return possible object is
   * {@link String }
   */
  public String getOutroCiap1() {
    return outroCiap1;
  }

  /**
   * Define o valor da propriedade outroCiap1.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setOutroCiap1(String value) {
    this.outroCiap1 = value;
  }

  /**
   * Obtém o valor da propriedade outroCiap2.
   *
   * @return possible object is
   * {@link String }
   */
  public String getOutroCiap2() {
    return outroCiap2;
  }

  /**
   * Define o valor da propriedade outroCiap2.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setOutroCiap2(String value) {
    this.outroCiap2 = value;
  }

  /**
   * Obtém o valor da propriedade cid10.
   *
   * @return possible object is
   * {@link String }
   */
  public String getCid10() {
    return cid10;
  }

  /**
   * Define o valor da propriedade cid10.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setCid10(String value) {
    this.cid10 = value;
  }

  /**
   * Obtém o valor da propriedade cid102.
   *
   * @return possible object is
   * {@link String }
   */
  public String getCid102() {
    return cid102;
  }

  /**
   * Define o valor da propriedade cid102.
   *
   * @param value allowed object is
   *              {@link String }
   */
  public void setCid102(String value) {
    this.cid102 = value;
  }

}
