Variable: PagedListUserDetailsApplicationUserSchema
ts
const PagedListUserDetailsApplicationUserSchema: ZodObject<{
end-index: ZodOptional<ZodNumber>;
items: ZodOptional<ZodArray<ZodObject<{
accountId: ZodOptional<ZodString>;
accountType: ZodOptional<ZodString>;
active: ZodOptional<ZodBoolean>;
avatarUrls: ZodOptional<ZodObject<{
16x16: ZodOptional<ZodURL>;
24x24: ZodOptional<ZodURL>;
32x32: ZodOptional<ZodURL>;
48x48: ZodOptional<ZodURL>;
}, $loose>>;
displayName: ZodOptional<ZodString>;
emailAddress: ZodOptional<ZodString>;
self: ZodOptional<ZodString>;
timeZone: ZodOptional<ZodString>;
}, $loose>>>;
max-results: ZodOptional<ZodNumber>;
size: ZodOptional<ZodNumber>;
start-index: ZodOptional<ZodNumber>;
}, $loose>;Defined in: src/cloud/models/pagedListUserDetailsApplicationUser.ts:9
A paged list. To access additional details append [start-index:end-index] to the expand request. For example, ?expand=sharedUsers[10:40] returns a list starting at item 10 and finishing at item 40.