@infrasoftbe/vnv-sdk
    Preparing search index...

    Variable StructureChildConst

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