accountEventStatusesPartialUpdate abstract method

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

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

Implementation

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