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

    Variable CreateOrderFragmentPropertiesConst

    CreateOrderFragmentProperties: 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<"order">>>>,
                        string | string[],
                        "order",
                    >,
                    string | string[],
                    "order",
                >;
            },
            "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?: "order";
                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?: "order";
            update_dt?: number;
        },
    > = ...