kemApiV3KohleradminDevicesMigrationLogsIdGet method

Future<Response<DeviceMigrationLogDTO>> kemApiV3KohleradminDevicesMigrationLogsIdGet({
  1. required int? id,
  2. bool? includeSnapshots,
})

Returns a device migration attempt log based on the given ID

This is a log entry of an attempt to migrate a device to a new device host, based on an existing device migration request. @param id @param includeSnapshots

Implementation

Future<chopper.Response<DeviceMigrationLogDTO>>
    kemApiV3KohleradminDevicesMigrationLogsIdGet({
  required int? id,
  bool? includeSnapshots,
}) {
  generatedMapping.putIfAbsent(
      DeviceMigrationLogDTO, () => DeviceMigrationLogDTO.fromJsonFactory);

  return _kemApiV3KohleradminDevicesMigrationLogsIdGet(
      id: id, includeSnapshots: includeSnapshots);
}