declare enum VisitSituation {
    /**
     * Pendente
     */
    PENDING = "PENDING",
    /**
     * Em andamento
     */
    IN_PROGRESS = "IN_PROGRESS",
    /**
     * Finalizada
     */
    FINISHED = "FINISHED",
    /**
     * Não realizada
     */
    NOT_OCCURRED = "NOT_OCCURRED"
}
export = VisitSituation;
