kemApiV3DevicesIdMaintenanceNotesGet method

Future<Response<List<MaintenanceNoteDTO>>> kemApiV3DevicesIdMaintenanceNotesGet({
  1. required int? id,
})

Get list of maintenance notes for a device @param id

Implementation

Future<chopper.Response<List<MaintenanceNoteDTO>>>
    kemApiV3DevicesIdMaintenanceNotesGet({required int? id}) {
  generatedMapping.putIfAbsent(
      MaintenanceNoteDTO, () => MaintenanceNoteDTO.fromJsonFactory);

  return _kemApiV3DevicesIdMaintenanceNotesGet(id: id);
}