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

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ListSessionEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowV2ListSessionEntityTypesResponse.



7148
7149
7150
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7148

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)


7140
7141
7142
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7140

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



7146
7147
7148
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7146

def session_entity_types
  @session_entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7153
7154
7155
7156
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7153

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