Class: Google::Apis::ServicedirectoryV1beta1::ListServicesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicedirectoryV1beta1::ListServicesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicedirectory_v1beta1/classes.rb,
lib/google/apis/servicedirectory_v1beta1/representations.rb,
lib/google/apis/servicedirectory_v1beta1/representations.rb
Overview
The response message for RegistrationService.ListServices.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
-
#services ⇒ Array<Google::Apis::ServicedirectoryV1beta1::Service>
The list of services.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListServicesResponse
constructor
A new instance of ListServicesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListServicesResponse
Returns a new instance of ListServicesResponse.
416 417 418 |
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 416 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more
results in the list.
Corresponds to the JSON property nextPageToken
409 410 411 |
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 409 def next_page_token @next_page_token end |
#services ⇒ Array<Google::Apis::ServicedirectoryV1beta1::Service>
The list of services.
Corresponds to the JSON property services
414 415 416 |
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 414 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
421 422 423 424 |
# File 'lib/google/apis/servicedirectory_v1beta1/classes.rb', line 421 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end |