Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
The response message for TransitionRouteGroups.ListTransitionRouteGroups.
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.
-
#transition_route_groups ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup>
The list of transition route groups.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse
constructor
A new instance of GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse
Returns a new instance of GoogleCloudDialogflowCxV3ListTransitionRouteGroupsResponse.
5245 5246 5247 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5245 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
5235 5236 5237 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5235 def next_page_token @next_page_token end |
#transition_route_groups ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRouteGroup>
The list of transition route groups. There will be a maximum number of items
returned based on the page_size field in the request. The list may in some
cases be empty or contain fewer entries than page_size even if this isn't the
last page.
Corresponds to the JSON property transitionRouteGroups
5243 5244 5245 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5243 def transition_route_groups @transition_route_groups end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5250 5251 5252 5253 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5250 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups) end |