//
// 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.fichaatendimentoindividualmaster;

import br.ufsc.esus.fichaatendimentoindividualchild.FichaAtendimentoIndividualChildTransport;
import br.ufsc.esus.variaslotacoesheader.VariasLotacoesHeaderTransport;

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 fichaAtendimentoIndividualMasterTransport complex type.
 *
 * <p>O seguinte fragmento do esquema especifica o conteúdo esperado contido dentro desta classe.
 *
 * <pre>
 * &lt;complexType name="fichaAtendimentoIndividualMasterTransport">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="headerTransport" type="{http://esus.ufsc.br/variaslotacoesheader}variasLotacoesHeaderTransport" minOccurs="0"/>
 *         &lt;element name="atendimentosIndividuais" type="{http://esus.ufsc.br/fichaatendimentoindividualchild}fichaAtendimentoIndividualChildTransport" maxOccurs="unbounded" minOccurs="0"/>
 *         &lt;element name="tpCdsOrigem" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         &lt;element name="uuidFicha" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "fichaAtendimentoIndividualMasterTransport", propOrder = {
  "headerTransport",
  "atendimentosIndividuais",
  "tpCdsOrigem",
  "uuidFicha"
}, namespace = "http://esus.ufsc.br/fichaatendimentoindividualmaster")
public class FichaAtendimentoIndividualMasterTransport {

  protected VariasLotacoesHeaderTransport headerTransport;
  protected List<FichaAtendimentoIndividualChildTransport> atendimentosIndividuais;
  protected Integer tpCdsOrigem;
  @XmlElement(required = true)
  protected String uuidFicha;

  /**
   * Obtém o valor da propriedade headerTransport.
   *
   * @return possible object is
   * {@link VariasLotacoesHeaderTransport }
   */
  public VariasLotacoesHeaderTransport getHeaderTransport() {
    return headerTransport;
  }

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

  /**
   * Gets the value of the atendimentosIndividuais 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 atendimentosIndividuais property.
   *
   * <p>
   * For example, to add a new item, do as follows:
   * <pre>
   *    getAtendimentosIndividuais().add(newItem);
   * </pre>
   *
   *
   * <p>
   * Objects of the following type(s) are allowed in the list
   * {@link FichaAtendimentoIndividualChildTransport }
   */
  public List<FichaAtendimentoIndividualChildTransport> getAtendimentosIndividuais() {
    if (atendimentosIndividuais == null) {
      atendimentosIndividuais = new ArrayList<>();
    }
    return this.atendimentosIndividuais;
  }

  /**
   * Obtém o valor da propriedade tpCdsOrigem.
   *
   * @return possible object is
   * {@link Integer }
   */
  public Integer getTpCdsOrigem() {
    return tpCdsOrigem;
  }

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

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

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

}
