Documentation
    Preparing search index...

    Variable glacierSetIceMakingSchemaConst

    glacierSetIceMakingSchema: ZodObject<
        extendShape<
            {
                id: ZodNumber;
                moduleType: ZodLiteral<1>;
                sn: ZodType<`BX11${string}`, ZodTypeDef, `BX11${string}`>;
                version: ZodLiteral<"1.0">;
            },
            {
                operateType: ZodLiteral<"iceMake">;
                params: ZodObject<
                    { enable: ZodNumber; iceShape: ZodNumber },
                    "strip",
                    ZodTypeAny,
                    { enable: number; iceShape: number },
                    { enable: number; iceShape: number },
                >;
            },
        >,
        "strip",
        ZodTypeAny,
        {
            id: number;
            moduleType: 1;
            operateType: "iceMake";
            params: { enable: number; iceShape: number };
            sn: `BX11${string}`;
            version: "1.0";
        },
        {
            id: number;
            moduleType: 1;
            operateType: "iceMake";
            params: { enable: number; iceShape: number };
            sn: `BX11${string}`;
            version: "1.0";
        },
    > = ...

    Set ice making If "enable"=0, ice making is disabled. If "enable"=1 and "iceShape"=0, the device will make small ice cubes. If "enable"=1 and "iceShape"=1, the device will make large ice cubes.

    {
    "id":123456789,
    "version":"1.0",
    "sn":"BX11ZCB4EF2E0002",
    "moduleType":1,
    "operateType":"iceMake",
    "params": {
    "enable": 1,
    "iceShape":1
    }
    }