Variable energyManagementParamsSchemaConst
energyManagementParamsSchema: ZodObject<
{
bpPowerSoc: ZodNumber;
isConfig: ZodUnion<[ZodLiteral<0>, ZodLiteral<1>]>;
minChgSoc: ZodNumber;
minDsgSoc: ZodNumber;
},
"strip",
ZodTypeAny,
{
bpPowerSoc: number;
isConfig: 0
| 1;
minChgSoc: number;
minDsgSoc: number;
},
{
bpPowerSoc: number;
isConfig: 0
| 1;
minChgSoc: number;
minDsgSoc: number;
},
> = ...
Set energy management
@todo: from the docs it is totally unclear whether this command should be used at all, minDsgSoc/minChgSoc -> not in use ? -> as of now this type is just defined for documentation purposes but not exposed to be used.