apiV3CustomerJobsDestroy method

Future<void> apiV3CustomerJobsDestroy(
  1. String id
)

Parameters:

Implementation

Future<void> apiV3CustomerJobsDestroy(String id,) async {
  final response = await apiV3CustomerJobsDestroyWithHttpInfo(id,);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}