Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse

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

Overview

The response message for SessionEntityTypes.ListSessionEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowV2beta1ListSessionEntityTypesResponse.



9970
9971
9972
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 9970

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)


9962
9963
9964
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 9962

def next_page_token
  @next_page_token
end

#session_entity_typesArray<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1SessionEntityType>

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



9968
9969
9970
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 9968

def session_entity_types
  @session_entity_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9975
9976
9977
9978
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 9975

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