deleteBucketsIDOwnersID method

Future<void> deleteBucketsIDOwnersID(
  1. String userID,
  2. String bucketID, {
  3. String? zapTraceSpan,
})

Remove an owner from a bucket

Parameters:

  • String userID (required): The ID of the owner to remove.

  • String bucketID (required): The bucket ID.

  • String zapTraceSpan: OpenTracing span context

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));
  }
}