Variable $AuthSetInitialPasswordInputDtoConst

$AuthSetInitialPasswordInputDto: {
    properties: {
        matriculaSiape: {
            description: "Matrícula SIAPE.";
            nullable: false;
            type: "string";
        };
        senha: {
            description: "Nova senha.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["matriculaSiape", "senha"];
    type: "object";
} = ...