kemApiV3DevicesIdMaintenanceNotesPost method
- required int? id,
- required MaintenanceNoteUpsertV3Body? body,
Add a new maintenance note to the device. @param id
Implementation
Future<chopper.Response<MaintenanceNoteDTO>>
kemApiV3DevicesIdMaintenanceNotesPost({
required int? id,
required MaintenanceNoteUpsertV3Body? body,
}) {
generatedMapping.putIfAbsent(
MaintenanceNoteDTO, () => MaintenanceNoteDTO.fromJsonFactory);
return _kemApiV3DevicesIdMaintenanceNotesPost(id: id, body: body);
}