Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentCoachingInstruction

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2AgentCoachingInstruction

Returns a new instance of GoogleCloudDialogflowV2AgentCoachingInstruction.



7116
7117
7118
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7116

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_actionString

Corresponds to the JSON property agentAction

Returns:

  • (String)


7084
7085
7086
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7084

def agent_action
  @agent_action
end

#conditionString

Corresponds to the JSON property condition

Returns:

  • (String)


7089
7090
7091
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7089

def condition
  @condition
end

#display_detailsString

Corresponds to the JSON property displayDetails

Returns:

  • (String)


7094
7095
7096
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7094

def display_details
  @display_details
end

#display_nameString

Corresponds to the JSON property displayName

Returns:

  • (String)


7099
7100
7101
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7099

def display_name
  @display_name
end

#duplicate_check_resultGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2AgentCoachingInstructionDuplicateCheckResult

Corresponds to the JSON property duplicateCheckResult



7104
7105
7106
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7104

def duplicate_check_result
  @duplicate_check_result
end

#system_actionString

Corresponds to the JSON property systemAction

Returns:

  • (String)


7109
7110
7111
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7109

def system_action
  @system_action
end

#triggering_eventString

Corresponds to the JSON property triggeringEvent

Returns:

  • (String)


7114
7115
7116
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7114

def triggering_event
  @triggering_event
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7121
7122
7123
7124
7125
7126
7127
7128
7129
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 7121

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