Variable $ArquivoFindOneResultDtoConst

$ArquivoFindOneResultDto: {
    properties: {
        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";
        };
        id: {
            description: "ID do Registro.";
            format: "uuid";
            nullable: false;
            type: "string";
        };
        mimeType: {
            description: "Mime-type.";
            nullable: false;
            type: "string";
        };
        name: {
            description: "Nome.";
            nullable: false;
            type: "string";
        };
        sizeBytes: {
            description: "Tamanho (em bytes).";
            nullable: false;
            type: "integer";
        };
        storageType: {
            description: "Estratégia de armazenamento.";
            nullable: false;
            type: "string";
        };
    };
    required: readonly ["name", "mimeType", "sizeBytes", "storageType", "id", "dateCreated", "dateUpdated", "dateDeleted"];
    type: "object";
} = ...