15#ifndef GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGE_BUCKET_BILLING_H
16#define GOOGLE_CLOUD_CPP_GOOGLE_CLOUD_STORAGE_BUCKET_BILLING_H
18#include "google/cloud/storage/version.h"
24GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
27
28
29
30
31
49 return std::rel_ops::operator!=(lhs, rhs);
53 return std::rel_ops::operator>(lhs, rhs);
57 return std::rel_ops::operator<=(lhs, rhs);
61 return std::rel_ops::operator>=(lhs, rhs);
64GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
Contains all the Google Cloud Storage C++ client APIs.
Definition: auto_finalize.h:24
bool operator<(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:44
bool operator<=(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:56
bool operator>(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:52
bool operator==(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:40
bool operator!=(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:48
bool operator>=(BucketBilling const &lhs, BucketBilling const &rhs)
Definition: bucket_billing.h:60
The billing configuration for a Bucket.
Definition: bucket_billing.h:32
bool requester_pays
Definition: bucket_billing.h:37
BucketBilling(bool v)
Definition: bucket_billing.h:35