class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
Output only. Represents a notification sent to Pub/Sub subscribers for agent assistant events in a specific conversation.
Attributes
The conversation this notification refers to. Format: `projects//conversations/ `. Corresponds to the JSON property `conversation` @return [String]
The participant that the suggestion is compiled for. And This field is used to call Participants.ListSuggestions API. Format: `projects//conversations// participants/`. It will not be set in legacy workflow. HumanAgentAssistantConfig.name for more information. Corresponds to the JSON property `participant` @return [String]
The suggestion results payload that this notification refers to. It will only be set when HumanAgentAssistantConfig.SuggestionConfig. group_suggestion_responses sets to true. Corresponds to the JSON property `suggestionResults` @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestionResult>]
Public Class Methods
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 11282 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 11287 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