clientsPartialUpdate abstract method

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

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

Implementation

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