Variable ListCollectionsResponseConst
ListCollectionsResponse: ZodObject<
{
data: ZodArray<
ZodObject<
{
id: ZodUUID;
name: ZodString;
type: ZodEnum<{ owned: "owned"; standard: "standard" }>;
},
$strip,
>,
>;
pagination: ZodObject<
{
limit: ZodNumber;
offset: ZodNumber;
sort: ZodOptional<
ZodRecord<
ZodString,
ZodUnion<readonly [ZodLiteral<1>, ZodLiteral<-1>]>,
>,
>;
total: ZodNumber;
},
$strip,
>;
},
$strip,
> = ...
Collections list response.