kemApiV3DevicesIdMaintenanceNotesPost method

Future<Response<MaintenanceNoteDTO>> kemApiV3DevicesIdMaintenanceNotesPost({
  1. required int? id,
  2. 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);
}