Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchUpdateEntitiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2BatchUpdateEntitiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb
Instance Attribute Summary collapse
-
#entities ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EntityTypeEntity>
Corresponds to the JSON property
entities. -
#language_code ⇒ String
Corresponds to the JSON property
languageCode. -
#update_mask ⇒ String
Corresponds to the JSON property
updateMask.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2BatchUpdateEntitiesRequest
constructor
A new instance of GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2BatchUpdateEntitiesRequest
Returns a new instance of GoogleCloudDialogflowV2BatchUpdateEntitiesRequest.
7856 7857 7858 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7856 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entities ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2EntityTypeEntity>
Corresponds to the JSON property entities
7844 7845 7846 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7844 def entities @entities end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
7849 7850 7851 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7849 def language_code @language_code end |
#update_mask ⇒ String
Corresponds to the JSON property updateMask
7854 7855 7856 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7854 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7861 7862 7863 7864 7865 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7861 def update!(**args) @entities = args[:entities] if args.key?(:entities) @language_code = args[:language_code] if args.key?(:language_code) @update_mask = args[:update_mask] if args.key?(:update_mask) end |