kemproApiV2DevicesIdAlertsGet method

Future<Response<List<ActiveAlertV2>>> kemproApiV2DevicesIdAlertsGet({
  1. required String? id,
})

Get the active alerts of the device with the given ID @param id

Implementation

Future<chopper.Response<List<ActiveAlertV2>>> kemproApiV2DevicesIdAlertsGet(
    {required String? id}) {
  generatedMapping.putIfAbsent(
      ActiveAlertV2, () => ActiveAlertV2.fromJsonFactory);

  return _kemproApiV2DevicesIdAlertsGet(id: id);
}