eventNotesPartialUpdate abstract method

  1. @Patch(path: '/event_notes/{id}')
Future<Response<EventNote>> eventNotesPartialUpdate({
  1. @Body() @required EventNote? data,
  2. @Path('id') @required int? id,
})

@param data @param id The LASSO unique identifier for this resource.

Implementation

@Patch(path: '/event_notes/{id}')
Future<chopper.Response<EventNote>> eventNotesPartialUpdate(
    {@Body() @required EventNote? data, @Path('id') @required int? id});