kemApiV3DevicesIdMaintenanceNotesNoteIdPut method

Future<Response<MaintenanceNoteDTO>> kemApiV3DevicesIdMaintenanceNotesNoteIdPut({
  1. required int? id,
  2. required int? noteId,
  3. required MaintenanceNoteUpsertV3Body? body,
})

Update an existing maintenance note's contents. @param id @param noteId

Implementation

Future<chopper.Response<MaintenanceNoteDTO>>
    kemApiV3DevicesIdMaintenanceNotesNoteIdPut({
  required int? id,
  required int? noteId,
  required MaintenanceNoteUpsertV3Body? body,
}) {
  generatedMapping.putIfAbsent(
      MaintenanceNoteDTO, () => MaintenanceNoteDTO.fromJsonFactory);

  return _kemApiV3DevicesIdMaintenanceNotesNoteIdPut(
      id: id, noteId: noteId, body: body);
}