kemApiV3DevicesIdAlertsGet method
- required int? id,
- DeviceHostDTO? sourceDeviceHost,
@param id @param sourceDeviceHost The cloud architecture which the device is connected to.
Implementation
Future<chopper.Response<List<AlertDTO>>> kemApiV3DevicesIdAlertsGet({
required int? id,
enums.DeviceHostDTO? sourceDeviceHost,
}) {
generatedMapping.putIfAbsent(AlertDTO, () => AlertDTO.fromJsonFactory);
return _kemApiV3DevicesIdAlertsGet(
id: id, sourceDeviceHost: sourceDeviceHost?.value?.toString());
}