Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 2.12 KB

File metadata and controls

32 lines (26 loc) · 2.12 KB

ApiSchemasProjectV2GetProjectsPaginatedResponse

Response model for the V2 projects paginated endpoint.

Example Usage

import { ApiSchemasProjectV2GetProjectsPaginatedResponse } from "galileo-generated/models";

let value: ApiSchemasProjectV2GetProjectsPaginatedResponse = {
  projects: [
    {
      id: "<value>",
      name: "<value>",
      createdAt: new Date("2026-05-04T08:25:22.243Z"),
      updatedAt: new Date("2024-12-01T01:44:14.130Z"),
    },
  ],
  totalCount: 615862,
};

Fields

Field Type Required Description
startingToken number N/A
limit number N/A
paginated boolean N/A
nextStartingToken number N/A
projects models.ProjectItem[] ✔️ N/A
totalCount number ✔️ Total number of projects matching the filters.