Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v3beta1/classes.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb,
generated/google/apis/dialogflow_v3beta1/representations.rb

Overview

The response message for TransitionRouteGroups.ListTransitionRouteGroups.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse

Returns a new instance of GoogleCloudDialogflowCxV3beta1ListTransitionRouteGroupsResponse.



4482
4483
4484
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4482

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

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

Returns:

  • (String)


4472
4473
4474
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4472

def next_page_token
  @next_page_token
end

#transition_route_groupsArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRouteGroup>

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



4480
4481
4482
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4480

def transition_route_groups
  @transition_route_groups
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4487
4488
4489
4490
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4487

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