Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Overview
An excluded entity phrase that should not be matched.
Instance Attribute Summary collapse
-
#value ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase
constructor
A new instance of GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase
Returns a new instance of GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase.
2044 2045 2046 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2044 def initialize(**args) update!(**args) end |
Instance Attribute Details
#value ⇒ String
Required. The word or phrase to be excluded.
Corresponds to the JSON property value
2042 2043 2044 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2042 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2049 2050 2051 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 2049 def update!(**args) @value = args[:value] if args.key?(:value) end |