eventPositionsPartialUpdate abstract method

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

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

Implementation

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