Variable CreateListChildResponseConst
CreateListChildResponse: ZodObject<
{
create_dt: ZodEffects<
ZodOptional<ZodNullable<ZodOptional<ZodNumber>>>,
number,
number,
>;
id: ZodEffects<
ZodOptional<ZodNullable<ZodOptional<ZodString>>>,
string | string[],
string,
>;
name: ZodString;
token: ZodString;
update_dt: ZodEffects<
ZodOptional<ZodNullable<ZodOptional<ZodNumber>>>,
number,
number,
>;
} & {
child: ZodEffects<
ZodEffects<
ZodUnion<[ZodString, ZodNumber]>,
number | number[],
string | number,
>,
number | number[],
string | number,
>;
meta: ZodEffects<
ZodEffects<
ZodNullable<ZodOptional<ZodObject<{}, "strip", ZodTypeAny, {}, {}>>>,
any,
{},
>,
any,
{},
>;
type: ZodLiteral<"list_child">;
},
"strip",
ZodTypeAny,
{
child?: number
| number[];
create_dt?: number;
id?: string | string[];
meta?: any;
name?: string;
token?: string;
type?: "list_child";
update_dt?: number;
},
{
child?: string
| number;
create_dt?: number;
id?: string;
meta?: {};
name?: string;
token?: string;
type?: "list_child";
update_dt?: number;
},
> = CreateListChildProperties