Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
- 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
-
#enable_entity_extraction ⇒ Boolean
(also: #enable_entity_extraction?)
Corresponds to the JSON property
enableEntityExtraction. -
#enable_sentiment_analysis ⇒ Boolean
(also: #enable_sentiment_analysis?)
Corresponds to the JSON property
enableSentimentAnalysis. -
#enable_sentiment_analysis_v3 ⇒ Boolean
(also: #enable_sentiment_analysis_v3?)
Corresponds to the JSON property
enableSentimentAnalysisV3.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig.
14386 14387 14388 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_entity_extraction ⇒ Boolean Also known as: enable_entity_extraction?
Corresponds to the JSON property enableEntityExtraction
14371 14372 14373 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14371 def enable_entity_extraction @enable_entity_extraction end |
#enable_sentiment_analysis ⇒ Boolean Also known as: enable_sentiment_analysis?
Corresponds to the JSON property enableSentimentAnalysis
14377 14378 14379 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14377 def enable_sentiment_analysis @enable_sentiment_analysis end |
#enable_sentiment_analysis_v3 ⇒ Boolean Also known as: enable_sentiment_analysis_v3?
Corresponds to the JSON property enableSentimentAnalysisV3
14383 14384 14385 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14383 def enable_sentiment_analysis_v3 @enable_sentiment_analysis_v3 end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14391 14392 14393 14394 14395 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 14391 def update!(**args) @enable_entity_extraction = args[:enable_entity_extraction] if args.key?(:enable_entity_extraction) @enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis) @enable_sentiment_analysis_v3 = args[:enable_sentiment_analysis_v3] if args.key?(:enable_sentiment_analysis_v3) end |