deleteBucketsIDOwnersID method
Remove an owner from a bucket
Parameters:
Implementation
Future<void> deleteBucketsIDOwnersID(String userID, String bucketID,
    {String? zapTraceSpan}) async {
  final response = await deleteBucketsIDOwnersIDWithHttpInfo(userID, bucketID,
      zapTraceSpan: zapTraceSpan);
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
}