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

    Variable $ReservaFindOneResultViewConst

    $ReservaFindOneResultView: {
        properties: {
            ambiente: {
                allOf: readonly [
                    { $ref: "#/components/schemas/AmbienteFindOneResultView" },
                ];
                description: "Visão FindOne de um ambiente.";
                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";
            };
            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";
            };
            motivo: {
                description: "Motivo da reserva.";
                minLength: 1;
                nullable: true;
                type: "string";
            };
            rrule: {
                description: "Regra RRule para a recorrência da reserva. Segue a RFC 5545 do iCalendar.";
                nullable: false;
                type: "string";
            };
            situacao: {
                description: "Situação da reserva.";
                minLength: 1;
                nullable: false;
                type: "string";
            };
            tipo: {
                description: "Tipo da reserva.";
                minLength: 1;
                nullable: true;
                type: "string";
            };
            usuario: {
                allOf: readonly [
                    { $ref: "#/components/schemas/UsuarioFindOneResultView" },
                ];
                description: "Visão FindOne de um Usuário.";
                kind: "type";
                nullable: false;
            };
        };
        required: readonly [
            "id",
            "situacao",
            "motivo",
            "tipo",
            "rrule",
            "usuario",
            "ambiente",
            "dateCreated",
            "dateUpdated",
            "dateDeleted",
        ];
        type: "object";
    } = ...

    Type declaration

    • Readonlyproperties: {
          ambiente: {
              allOf: readonly [
                  { $ref: "#/components/schemas/AmbienteFindOneResultView" },
              ];
              description: "Visão FindOne de um ambiente.";
              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";
          };
          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";
          };
          motivo: {
              description: "Motivo da reserva.";
              minLength: 1;
              nullable: true;
              type: "string";
          };
          rrule: {
              description: "Regra RRule para a recorrência da reserva. Segue a RFC 5545 do iCalendar.";
              nullable: false;
              type: "string";
          };
          situacao: {
              description: "Situação da reserva.";
              minLength: 1;
              nullable: false;
              type: "string";
          };
          tipo: {
              description: "Tipo da reserva.";
              minLength: 1;
              nullable: true;
              type: "string";
          };
          usuario: {
              allOf: readonly [
                  { $ref: "#/components/schemas/UsuarioFindOneResultView" },
              ];
              description: "Visão FindOne de um Usuário.";
              kind: "type";
              nullable: false;
          };
      }
    • Readonlyrequired: readonly [
          "id",
          "situacao",
          "motivo",
          "tipo",
          "rrule",
          "usuario",
          "ambiente",
          "dateCreated",
          "dateUpdated",
          "dateDeleted",
      ]
    • Readonlytype: "object"