Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse

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 SessionEntityTypes.ListSessionEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowCxV3beta1ListSessionEntityTypesResponse.



4400
4401
4402
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4400

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)


4392
4393
4394
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4392

def next_page_token
  @next_page_token
end

#session_entity_typesArray<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SessionEntityType>

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



4398
4399
4400
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4398

def session_entity_types
  @session_entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4405
4406
4407
4408
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 4405

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