eventAccountUserRoleRelationshipsUpdate abstract method

  1. @Put(path: '/event_account_user_role_relationships/{id}')
Future<Response<EventAccountUserRoleRelationship>> eventAccountUserRoleRelationshipsUpdate({
  1. @Body() @required EventAccountUserRoleRelationship? data,
  2. @Path('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});