eventAccountUserRoleRelationshipsUpdate abstract method
- @Put.new(path: '/event_account_user_role_relationships/{id}')
- @Body.new() @required EventAccountUserRoleRelationship? data,
- @Path.new('id') @required int? id,
@param data @param id The LASSO unique identifier for this resource.
Implementation
@Put(path: '/event_account_user_role_relationships/{id}')
Future<chopper.Response<EventAccountUserRoleRelationship>>
eventAccountUserRoleRelationshipsUpdate(
{@Body() @required EventAccountUserRoleRelationship? data,
@Path('id') @required int? id});