Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListSessionEntityTypesResponse

Inherits:
Object
  • Object
show all
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 SessionEntityTypes.ListSessionEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ListSessionEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowV2ListSessionEntityTypesResponse.



2613
2614
2615
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2613

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)


2605
2606
2607
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2605

def next_page_token
  @next_page_token
end

#session_entity_typesArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SessionEntityType>

The list of session entity types. There will be a maximum number of items returned based on the page_size field in the request. Corresponds to the JSON property sessionEntityTypes



2611
2612
2613
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2611

def session_entity_types
  @session_entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2618
2619
2620
2621
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2618

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
end