Variable $DiarioPreferenciaAgrupamentoFindOneResultDtoConst

$DiarioPreferenciaAgrupamentoFindOneResultDto: {
    properties: {
        aulasSeguidas: {
            description: "Quantidade de aulas seguidas.";
            nullable: false;
            type: "integer";
        };
        dataFim: {
            description: "Fim da vigência da preferência de agendamento.";
            format: "date";
            nullable: true;
            type: "string";
        };
        dataInicio: {
            description: "Início da vigência da preferência de agendamento.";
            format: "date";
            nullable: false;
            type: "string";
        };
        dateCreated: {
            description: "Data de Criação do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        dateDeleted: {
            description: "Data de Exclusão do Registro.";
            format: "date-time";
            nullable: true;
            type: "string";
        };
        dateUpdated: {
            description: "Data de Atualização do Registro.";
            format: "date-time";
            nullable: false;
            type: "string";
        };
        diario: {
            allOf: readonly [{
                $ref: "#/components/schemas/DiarioFindOneResultDto";
            }];
            description: "Diário vinculado.";
            nullable: false;
        };
        diaSemanaIso: {
            description: "Dia da semana.";
            nullable: false;
            type: "integer";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        intervaloDeTempo: {
            allOf: readonly [{
                $ref: "#/components/schemas/IntervaloDeTempoFindOneResultDto";
            }];
            description: "Intervalo de tempo.";
            nullable: true;
        };
    };
    required: readonly ["diaSemanaIso", "aulasSeguidas", "dataInicio", "dataFim", "intervaloDeTempo", "diario", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...