clientAddressesPartialUpdate abstract method

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

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

Implementation

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