Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListEnvironmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListEnvironmentsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/representations.rb
Overview
The response message for Environments.ListEnvironments.
Instance Attribute Summary collapse
-
#environments ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Environment>
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) ⇒ GoogleCloudDialogflowV2ListEnvironmentsResponse
constructor
A new instance of GoogleCloudDialogflowV2ListEnvironmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2ListEnvironmentsResponse
Returns a new instance of GoogleCloudDialogflowV2ListEnvironmentsResponse.
7094 7095 7096 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7094 def initialize(**args) update!(**args) end |
Instance Attribute Details
#environments ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2Environment>
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
7086 7087 7088 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7086 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
7092 7093 7094 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7092 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7099 7100 7101 7102 |
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7099 def update!(**args) @environments = args[:environments] if args.key?(:environments) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |