kemproApiV2DevicesIdMaintenanceNotesPost method

Future<Response<MaintenanceNoteV2>> kemproApiV2DevicesIdMaintenanceNotesPost({
  1. required String? id,
  2. required MaintenanceNoteV2Body? body,
})

Create a maintenance note to be added to the maintenance log of the device with the given ID @param id

Implementation

Future<chopper.Response<MaintenanceNoteV2>>
    kemproApiV2DevicesIdMaintenanceNotesPost({
  required String? id,
  required MaintenanceNoteV2Body? body,
}) {
  generatedMapping.putIfAbsent(
      MaintenanceNoteV2, () => MaintenanceNoteV2.fromJsonFactory);

  return _kemproApiV2DevicesIdMaintenanceNotesPost(id: id, body: body);
}