eventCollectionsPartialUpdate abstract method
- @Patch.new(path: '/event_collections/{id}')
- @Body.new() @required EventCollection? data,
- @Path.new('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});