eventCollectionsPartialUpdate abstract method

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

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

Implementation

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