crewNotesPartialUpdate abstract method

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

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

Implementation

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