Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentCoachingContext
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentCoachingContext
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Instance Attribute Summary collapse
-
#instructions ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstruction>
Corresponds to the JSON property
instructions. -
#output_language_code ⇒ String
Corresponds to the JSON property
outputLanguageCode. -
#overarching_guidance ⇒ String
Corresponds to the JSON property
overarchingGuidance. -
#version ⇒ String
Corresponds to the JSON property
version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentCoachingContext
constructor
A new instance of GoogleCloudDialogflowV2beta1AgentCoachingContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1AgentCoachingContext
Returns a new instance of GoogleCloudDialogflowV2beta1AgentCoachingContext.
11019 11020 11021 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11019 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instructions ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AgentCoachingInstruction>
Corresponds to the JSON property instructions
11002 11003 11004 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11002 def instructions @instructions end |
#output_language_code ⇒ String
Corresponds to the JSON property outputLanguageCode
11007 11008 11009 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11007 def output_language_code @output_language_code end |
#overarching_guidance ⇒ String
Corresponds to the JSON property overarchingGuidance
11012 11013 11014 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11012 def overarching_guidance @overarching_guidance end |
#version ⇒ String
Corresponds to the JSON property version
11017 11018 11019 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11017 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11024 11025 11026 11027 11028 11029 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 11024 def update!(**args) @instructions = args[:instructions] if args.key?(:instructions) @output_language_code = args[:output_language_code] if args.key?(:output_language_code) @overarching_guidance = args[:overarching_guidance] if args.key?(:overarching_guidance) @version = args[:version] if args.key?(:version) end |