Class: Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbilling_v1beta/classes.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb,
lib/google/apis/cloudbilling_v1beta/representations.rb
Overview
Response message for ListBillingAccountServices.
Instance Attribute Summary collapse
-
#billing_account_services ⇒ Array<Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService>
The returned billing account services.
-
#next_page_token ⇒ String
Token that can be sent as
page_token
in the subsequent request to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse
constructor
A new instance of GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse
Returns a new instance of GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse.
1238 1239 1240 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1238 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_account_services ⇒ Array<Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService>
The returned billing account services.
Corresponds to the JSON property billingAccountServices
1230 1231 1232 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1230 def billing_account_services @billing_account_services end |
#next_page_token ⇒ String
Token that can be sent as page_token
in the subsequent request to retrieve
the next page. If this field is empty, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1236 1237 1238 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1236 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1243 1244 1245 1246 |
# File 'lib/google/apis/cloudbilling_v1beta/classes.rb', line 1243 def update!(**args) @billing_account_services = args[:billing_account_services] if args.key?(:billing_account_services) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |