Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
- 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
-
#conversation ⇒ String
Corresponds to the JSON property
conversation. -
#participant ⇒ String
Corresponds to the JSON property
participant. -
#suggestion_results ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property
suggestionResults.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent.
18840 18841 18842 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18840 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation ⇒ String
Corresponds to the JSON property conversation
18828 18829 18830 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18828 def conversation @conversation end |
#participant ⇒ String
Corresponds to the JSON property participant
18833 18834 18835 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18833 def participant @participant end |
#suggestion_results ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2beta1SuggestionResult>
Corresponds to the JSON property suggestionResults
18838 18839 18840 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18838 def suggestion_results @suggestion_results end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
18845 18846 18847 18848 18849 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 18845 def update!(**args) @conversation = args[:conversation] if args.key?(:conversation) @participant = args[:participant] if args.key?(:participant) @suggestion_results = args[:suggestion_results] if args.key?(:suggestion_results) end |