kemApiV3InternalDevicesMigrateMissingParamsPost method

Future<Response> kemApiV3InternalDevicesMigrateMissingParamsPost({
  1. required DeviceHostMigrateParamsV3Body? body,
})

Migrate known missing parameter data of a generator from the old device host to the new device host.

Some parameters, such as "Engine Runtime since Maintenance", are not automatically uploaded when a generator connects to a device host for the first time. Instead, they are only updated by the controller when their value changes. This method migrates such data from the old device host to the new one so that the old data carries over. Ideally this is called after a device host change.

Implementation

Future<chopper.Response> kemApiV3InternalDevicesMigrateMissingParamsPost(
    {required DeviceHostMigrateParamsV3Body? body}) {
  return _kemApiV3InternalDevicesMigrateMissingParamsPost(body: body);
}