Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1AgentCoachingInstruction
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1AgentCoachingInstruction
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/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::DialogflowV2::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.
17829 17830 17831 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17829 def initialize(**args) update!(**args) end |
Instance Attribute Details
#agent_action ⇒ String
Corresponds to the JSON property agentAction
17797 17798 17799 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17797 def agent_action @agent_action end |
#condition ⇒ String
Corresponds to the JSON property condition
17802 17803 17804 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17802 def condition @condition end |
#display_details ⇒ String
Corresponds to the JSON property displayDetails
17807 17808 17809 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17807 def display_details @display_details end |
#display_name ⇒ String
Corresponds to the JSON property displayName
17812 17813 17814 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17812 def display_name @display_name end |
#duplicate_check_result ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1AgentCoachingInstructionDuplicateCheckResult
Corresponds to the JSON property duplicateCheckResult
17817 17818 17819 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17817 def duplicate_check_result @duplicate_check_result end |
#system_action ⇒ String
Corresponds to the JSON property systemAction
17822 17823 17824 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17822 def system_action @system_action end |
#triggering_event ⇒ String
Corresponds to the JSON property triggeringEvent
17827 17828 17829 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17827 def triggering_event @triggering_event end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
17834 17835 17836 17837 17838 17839 17840 17841 17842 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 17834 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 |