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

    Variable CreateTestFragmentPropertiesConst

    CreateTestFragmentProperties: ZodEffects<
        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,
                >;
            } & {
                type: ZodEffects<
                    ZodEffects<
                        ZodOptional<ZodNullable<ZodOptional<ZodLiteral<"test">>>>,
                        string | string[],
                        "test",
                    >,
                    string | string[],
                    "test",
                >;
            },
            "strip",
            ZodTypeAny,
            {
                create_dt?: number;
                id?: string
                | string[];
                name?: string;
                token?: string;
                type?: string | string[];
                update_dt?: number;
            },
            {
                create_dt?: number;
                id?: string;
                name?: string;
                token?: string;
                type?: "test";
                update_dt?: number;
            },
        >,
        {
            create_dt?: number;
            id?: string
            | string[];
            name?: string;
            token?: string;
            type?: string | string[];
            update_dt?: number;
        },
        {
            create_dt?: number;
            id?: string;
            name?: string;
            token?: string;
            type?: "test";
            update_dt?: number;
        },
    > = ...