Class: Google::Apis::CloudbillingV1::ListServicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudbillingV1::ListServicesResponse
- Defined in:
- generated/google/apis/cloudbilling_v1/classes.rb,
generated/google/apis/cloudbilling_v1/representations.rb,
generated/google/apis/cloudbilling_v1/representations.rb
Overview
Response message for ListServices
.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token to retrieve the next page of results.
-
#services ⇒ Array<Google::Apis::CloudbillingV1::Service>
A list of services.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListServicesResponse
constructor
A new instance of ListServicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListServicesResponse
Returns a new instance of ListServicesResponse
377 378 379 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 377 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token to retrieve the next page of results. To retrieve the next page,
call ListServices
again with the page_token
field set to this
value. This field is empty if there are no more results to retrieve.
Corresponds to the JSON property nextPageToken
370 371 372 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 370 def next_page_token @next_page_token end |
#services ⇒ Array<Google::Apis::CloudbillingV1::Service>
A list of services.
Corresponds to the JSON property services
375 376 377 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 375 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
382 383 384 385 |
# File 'generated/google/apis/cloudbilling_v1/classes.rb', line 382 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end |