The interface describing a workspace API response.

interface IWorkspace {
    data: ReadonlyPartialJSONObject;
    metadata: { created?: string; id: string; last_modified?: string };
}

Properties

Properties

The workspace data.

metadata: { created?: string; id: string; last_modified?: string }

The metadata for a workspace.

Type declaration

  • Optionalcreated?: string

    The creation date and time for this workspace (ISO 8601 format).

  • id: string

    The workspace ID.

  • Optionallast_modified?: string

    The last modification date and time for this workspace (ISO 8601 format).