Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstruction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstruction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Instance Attribute Summary collapse
-
#agent_action ⇒ String
Corresponds to the JSON property
agentAction. -
#condition ⇒ String
Corresponds to the JSON property
condition. -
#display_details ⇒ String
Corresponds to the JSON property
displayDetails. -
#display_name ⇒ String
Corresponds to the JSON property
displayName. -
#duplicate_check_result ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult
Corresponds to the JSON property
duplicateCheckResult. -
#system_action ⇒ String
Corresponds to the JSON property
systemAction. -
#triggering_event ⇒ String
Corresponds to the JSON property
triggeringEvent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentCoachingInstruction
constructor
A new instance of GoogleCloudDialogflowV2beta1AgentCoachingInstruction.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentCoachingInstruction
Returns a new instance of GoogleCloudDialogflowV2beta1AgentCoachingInstruction.
18552 18553 18554 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18552 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_action ⇒ String
Corresponds to the JSON property agentAction
18520 18521 18522 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18520 def agent_action @agent_action end |
#condition ⇒ String
Corresponds to the JSON property condition
18525 18526 18527 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18525 def condition @condition end |
#display_details ⇒ String
Corresponds to the JSON property displayDetails
18530 18531 18532 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18530 def display_details @display_details end |
#display_name ⇒ String
Corresponds to the JSON property displayName
18535 18536 18537 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18535 def display_name @display_name end |
#duplicate_check_result ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult
Corresponds to the JSON property duplicateCheckResult
18540 18541 18542 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18540 def duplicate_check_result @duplicate_check_result end |
#system_action ⇒ String
Corresponds to the JSON property systemAction
18545 18546 18547 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18545 def system_action @system_action end |
#triggering_event ⇒ String
Corresponds to the JSON property triggeringEvent
18550 18551 18552 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18550 def triggering_event @triggering_event end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18557 18558 18559 18560 18561 18562 18563 18564 18565 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 18557 def update!(**args) @agent_action = args[:agent_action] if args.key?(:agent_action) @condition = args[:condition] if args.key?(:condition) @display_details = args[:display_details] if args.key?(:display_details) @display_name = args[:display_name] if args.key?(:display_name) @duplicate_check_result = args[:duplicate_check_result] if args.key?(:duplicate_check_result) @system_action = args[:system_action] if args.key?(:system_action) @triggering_event = args[:triggering_event] if args.key?(:triggering_event) end |