@ladesa-ro/api-client-fetch - v1.0.0-next.35
    Preparing search index...

    Variable $ImagemArquivoFindOneFromImagemResultViewConst

    $ImagemArquivoFindOneFromImagemResultView: {
        properties: {
            altura: {
                description: "Altura da imagem.";
                nullable: false;
                type: "integer";
            };
            arquivo: {
                allOf: readonly [
                    { $ref: "#/components/schemas/ArquivoFindOneResultView" },
                ];
                description: "Dados de saída para encontrar um arquivo por id.";
                kind: "type";
                nullable: false;
            };
            dateCreated: {
                $id: "ladesa://schemas/v3/generics/date_time.json";
                $schema: "https://json-schema.org/draft/2020-12/schema";
                description: "Data e hora da criação do registro.";
                format: "date-time";
                nullable: false;
                type: "string";
            };
            dateDeleted: {
                $schema: "https://json-schema.org/draft/2020-12/schema";
                description: "Data e hora da exclusão do registro.";
                format: "date-time";
                nullable: true;
                type: "string";
            };
            dateUpdated: {
                $id: "ladesa://schemas/v3/generics/date_time.json";
                $schema: "https://json-schema.org/draft/2020-12/schema";
                description: "Data e hora da alteração do registro.";
                format: "date-time";
                nullable: false;
                type: "string";
            };
            formato: {
                description: "Formato da imagem.";
                nullable: false;
                type: "string";
            };
            id: {
                $id: "ladesa://schemas/v3/generics/uuid.json";
                $schema: "https://json-schema.org/draft/2020-12/schema";
                description: "Identificador do registro (uuid).";
                format: "uuid";
                nullable: false;
                type: "string";
            };
            largura: {
                description: "Largura da imagem.";
                nullable: false;
                type: "integer";
            };
            mimeType: {
                description: "Mime-type da imagem.";
                nullable: false;
                type: "string";
            };
        };
        required: readonly [
            "id",
            "largura",
            "altura",
            "formato",
            "mimeType",
            "arquivo",
            "dateCreated",
            "dateUpdated",
            "dateDeleted",
        ];
        type: "object";
    } = ...

    Type declaration

    • Readonlyproperties: {
          altura: {
              description: "Altura da imagem.";
              nullable: false;
              type: "integer";
          };
          arquivo: {
              allOf: readonly [
                  { $ref: "#/components/schemas/ArquivoFindOneResultView" },
              ];
              description: "Dados de saída para encontrar um arquivo por id.";
              kind: "type";
              nullable: false;
          };
          dateCreated: {
              $id: "ladesa://schemas/v3/generics/date_time.json";
              $schema: "https://json-schema.org/draft/2020-12/schema";
              description: "Data e hora da criação do registro.";
              format: "date-time";
              nullable: false;
              type: "string";
          };
          dateDeleted: {
              $schema: "https://json-schema.org/draft/2020-12/schema";
              description: "Data e hora da exclusão do registro.";
              format: "date-time";
              nullable: true;
              type: "string";
          };
          dateUpdated: {
              $id: "ladesa://schemas/v3/generics/date_time.json";
              $schema: "https://json-schema.org/draft/2020-12/schema";
              description: "Data e hora da alteração do registro.";
              format: "date-time";
              nullable: false;
              type: "string";
          };
          formato: {
              description: "Formato da imagem.";
              nullable: false;
              type: "string";
          };
          id: {
              $id: "ladesa://schemas/v3/generics/uuid.json";
              $schema: "https://json-schema.org/draft/2020-12/schema";
              description: "Identificador do registro (uuid).";
              format: "uuid";
              nullable: false;
              type: "string";
          };
          largura: {
              description: "Largura da imagem.";
              nullable: false;
              type: "integer";
          };
          mimeType: {
              description: "Mime-type da imagem.";
              nullable: false;
              type: "string";
          };
      }
    • Readonlyrequired: readonly [
          "id",
          "largura",
          "altura",
          "formato",
          "mimeType",
          "arquivo",
          "dateCreated",
          "dateUpdated",
          "dateDeleted",
      ]
    • Readonlytype: "object"