ListChild: ZodObject<
{
create_dt: ZodNumber;
id: ZodString;
name: ZodString;
token: ZodString;
update_dt: ZodNumber;
} & {
child: ZodString;
meta: ZodEffects<
ZodEffects<
ZodNullable<ZodOptional<ZodObject<{}, "strip", ZodTypeAny, {}, {}>>>,
any,
{},
>,
any,
{},
>;
type: ZodLiteral<"list_child">;
},
"strip",
ZodTypeAny,
{
child?: string;
create_dt?: number;
id?: string;
meta?: any;
name?: string;
token?: string;
type?: "list_child";
update_dt?: number;
},
{
child?: string;
create_dt?: number;
id?: string;
meta?: {};
name?: string;
token?: string;
type?: "list_child";
update_dt?: number;
},
> = ...