Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentParameter
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3IntentParameter
- 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
Instance Attribute Summary collapse
-
#entity_type ⇒ String
Corresponds to the JSON property
entityType. -
#id ⇒ String
Corresponds to the JSON property
id. -
#is_list ⇒ Boolean
(also: #is_list?)
Corresponds to the JSON property
isList. -
#redact ⇒ Boolean
(also: #redact?)
Corresponds to the JSON property
redact.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3IntentParameter
constructor
A new instance of GoogleCloudDialogflowCxV3IntentParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3IntentParameter
Returns a new instance of GoogleCloudDialogflowCxV3IntentParameter.
4551 4552 4553 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4551 def initialize(**args) update!(**args) end |
Instance Attribute Details
#entity_type ⇒ String
Corresponds to the JSON property entityType
4532 4533 4534 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4532 def entity_type @entity_type end |
#id ⇒ String
Corresponds to the JSON property id
4537 4538 4539 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4537 def id @id end |
#is_list ⇒ Boolean Also known as: is_list?
Corresponds to the JSON property isList
4542 4543 4544 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4542 def is_list @is_list end |
#redact ⇒ Boolean Also known as: redact?
Corresponds to the JSON property redact
4548 4549 4550 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4548 def redact @redact end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4556 4557 4558 4559 4560 4561 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 4556 def update!(**args) @entity_type = args[:entity_type] if args.key?(:entity_type) @id = args[:id] if args.key?(:id) @is_list = args[:is_list] if args.key?(:is_list) @redact = args[:redact] if args.key?(:redact) end |