Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#entities ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeEntity>
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) ⇒ GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest
constructor
A new instance of GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest
Returns a new instance of GoogleCloudDialogflowV2beta1BatchUpdateEntitiesRequest.
11874 11875 11876 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entities ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeEntity>
Corresponds to the JSON property entities
11862 11863 11864 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11862 def entities @entities end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
11867 11868 11869 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11867 def language_code @language_code end |
#update_mask ⇒ String
Corresponds to the JSON property updateMask
11872 11873 11874 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11872 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11879 11880 11881 11882 11883 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11879 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 |