Variable: PageProjectDetailsSchema
ts
const PageProjectDetailsSchema: ZodObject<{
isLast: ZodOptional<ZodBoolean>;
maxResults: ZodOptional<ZodNumber>;
nextPage: ZodOptional<ZodURL>;
self: ZodOptional<ZodURL>;
startAt: ZodOptional<ZodNumber>;
total: ZodOptional<ZodNumber>;
values: ZodOptional<ZodArray<ZodObject<{
avatarUrls: ZodOptional<ZodObject<{
16x16: ZodOptional<ZodURL>;
24x24: ZodOptional<ZodURL>;
32x32: ZodOptional<ZodURL>;
48x48: ZodOptional<ZodURL>;
}, $loose>>;
id: ZodOptional<ZodString>;
key: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
projectCategory: ZodOptional<ZodObject<{
description: ZodOptional<ZodString>;
id: ZodOptional<ZodString>;
name: ZodOptional<ZodString>;
self: ZodOptional<ZodString>;
}, $loose>>;
projectTypeKey: ZodOptional<ZodCustom<
| string & object
| "software"
| "service_desk"
| "business"
| "product_discovery"
| "customer_service",
| string & object
| "software"
| "service_desk"
| "business"
| "product_discovery"
| "customer_service">>;
self: ZodOptional<ZodString>;
simplified: ZodOptional<ZodBoolean>;
}, $loose>>>;
}, $loose>;Defined in: src/cloud/models/pageProjectDetails.ts:6
A page of items.