kemproApiV2DevicesIdGet method
- required int? id,
Get the device details for the device with the given ID.
Will return 404 Not Found if the authenticated user's dealer ID does not match the dealer ID associated with the device. @param id
Implementation
Future<chopper.Response<DeviceDetailsV2>> kemproApiV2DevicesIdGet(
{required int? id}) {
generatedMapping.putIfAbsent(
DeviceDetailsV2, () => DeviceDetailsV2.fromJsonFactory);
return _kemproApiV2DevicesIdGet(id: id);
}