kemproApiV2DevicesIdMaintenanceNotesGet method

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

Get the maintenance notes of the device with the given ID @param id

Implementation

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

  return _kemproApiV2DevicesIdMaintenanceNotesGet(id: id);
}