Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListSessionEntityTypesResponse

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

Overview

The response message for SessionEntityTypes.ListSessionEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ListSessionEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowCxV3ListSessionEntityTypesResponse.



2093
2094
2095
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2093

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)


2085
2086
2087
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2085

def next_page_token
  @next_page_token
end

#session_entity_typesArray<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType>

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



2091
2092
2093
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2091

def session_entity_types
  @session_entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2098
2099
2100
2101
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2098

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