Variable $DiarioPreferenciaAgrupamentoInputCreateDtoConst

$DiarioPreferenciaAgrupamentoInputCreateDto: {
    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";
        };
        diario: {
            allOf: readonly [{
                $ref: "#/components/schemas/DiarioFindOneInputDto";
            }];
            description: "Diário vinculado.";
            nullable: false;
        };
        diaSemanaIso: {
            description: "Dia da semana.";
            nullable: false;
            type: "integer";
        };
        intervaloDeTempo: {
            allOf: readonly [{
                $ref: "#/components/schemas/IntervaloDeTempoInputDto";
            }];
            description: "Intervalo de tempo.";
            nullable: true;
        };
    };
    required: readonly ["diaSemanaIso", "aulasSeguidas", "dataInicio", "dataFim", "intervaloDeTempo", "diario"];
    type: "object";
} = ...