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

    Variable CreateStructureChildResponseConst

    CreateStructureChildResponse: 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<"structure_child">;
        },
        "strip",
        ZodTypeAny,
        {
            child?: number
            | number[];
            create_dt?: number;
            id?: string | string[];
            meta?: any;
            name?: string;
            token?: string;
            type?: "structure_child";
            update_dt?: number;
        },
        {
            child?: string
            | number;
            create_dt?: number;
            id?: string;
            meta?: {};
            name?: string;
            token?: string;
            type?: "structure_child";
            update_dt?: number;
        },
    > = CreateStructureChildProperties