kemproApiV2DevicesIdPut method

Future<Response<DeviceV2>> kemproApiV2DevicesIdPut({
  1. required int? id,
  2. required DeviceV2Body? body,
})

Update the device display name and address information @param id

Implementation

Future<chopper.Response<DeviceV2>> kemproApiV2DevicesIdPut({
  required int? id,
  required DeviceV2Body? body,
}) {
  generatedMapping.putIfAbsent(DeviceV2, () => DeviceV2.fromJsonFactory);

  return _kemproApiV2DevicesIdPut(id: id, body: body);
}