Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 5.23 KB

File metadata and controls

32 lines (26 loc) · 5.23 KB

ProjectItem

Represents a single project item for the UI list.

Example Usage

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

let value: ProjectItem = {
  id: "<value>",
  name: "<value>",
  createdAt: new Date("2025-02-22T20:06:22.888Z"),
  updatedAt: new Date("2025-12-02T13:31:47.628Z"),
};

Fields

Field Type Required Description
id string ✔️ N/A
permissions models.Permission[] N/A
name string ✔️ N/A
createdAt Date ✔️ N/A
updatedAt Date ✔️ N/A
bookmark boolean N/A
numLogstreams number Count of runs with task_type=15
numExperiments number Count of runs with task_type=16
createdByUser models.UserInfo N/A
description string N/A
labels models.ProjectLabels[] List of labels associated with the project.