Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListEnvironmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListEnvironmentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
The response message for Environments.ListEnvironments.
Instance Attribute Summary collapse
-
#environments ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Environment>
The list of agent environments.
-
#next_page_token ⇒ String
Token to retrieve the next page of results, or empty if there are no more results in the list.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListEnvironmentsResponse
constructor
A new instance of GoogleCloudDialogflowV2beta1ListEnvironmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListEnvironmentsResponse
Returns a new instance of GoogleCloudDialogflowV2beta1ListEnvironmentsResponse.
17306 17307 17308 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17306 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environments ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Environment>
The list of agent environments. There will be a maximum number of items
returned based on the page_size field in the request.
Corresponds to the JSON property environments
17298 17299 17300 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17298 def environments @environments end |
#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
17304 17305 17306 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17304 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17311 17312 17313 17314 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 17311 def update!(**args) @environments = args[:environments] if args.key?(:environments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |