class Google::Apis::DialogflowV3::GoogleCloudDialogflowV2HumanAgentAssistantEvent
Represents a notification sent to Cloud Pub/Sub subscribers for human agent assistant events in a specific conversation.
Attributes
conversation[RW]
The conversation this notification refers to. Format: `projects//conversations/ `. Corresponds to the JSON property `conversation` @return [String]
participant[RW]
The participant that the suggestion is compiled for. Format: `projects// conversations//participants/`. It will not be set in legacy workflow. Corresponds to the JSON property `participant` @return [String]
suggestion_results[RW]
The suggestion results payload that this notification refers to. Corresponds to the JSON property `suggestionResults` @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowV2SuggestionResult>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 9543 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dialogflow_v3/classes.rb, line 9548 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