Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListEntityTypesResponse

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 EntityTypes.ListEntityTypes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2ListEntityTypesResponse

Returns a new instance of GoogleCloudDialogflowV2ListEntityTypesResponse.



7067
7068
7069
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7067

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#entity_typesArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EntityType>

The list of agent 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 entityTypes



7059
7060
7061
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7059

def entity_types
  @entity_types
end

#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)


7065
7066
7067
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7065

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7072
7073
7074
7075
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 7072

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