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.
11922 11923 11924 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11922 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entities ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EntityTypeEntity>
Corresponds to the JSON property entities
11910 11911 11912 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11910 def entities @entities end |
#language_code ⇒ String
Corresponds to the JSON property languageCode
11915 11916 11917 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11915 def language_code @language_code end |
#update_mask ⇒ String
Corresponds to the JSON property updateMask
11920 11921 11922 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11920 def update_mask @update_mask end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11927 11928 11929 11930 11931 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11927 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 |