kemApiV3DevicesIdMaintenanceNotesNoteIdPut method
- required int? id,
- required int? noteId,
- 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);
}