public sealed class ConversationSuccess : IMessage<ResponseMessage.Types.ConversationSuccess>, IEquatable<ResponseMessage.Types.ConversationSuccess>, IDeepCloneable<ResponseMessage.Types.ConversationSuccess>, IBufferMessage, IMessage
Indicates that the conversation succeeded, i.e., the bot handled the issue
that the customer talked to it about.
Dialogflow only uses this to determine which conversations should be
counted as successful and doesn't process the metadata in this message in
any way. Note that Dialogflow also considers conversations that get to the
conversation end page as successful even if they don't return
[ConversationSuccess][google.cloud.dialogflow.cx.v3.ResponseMessage.ConversationSuccess].
You may set this, for example:
In the [entry_fulfillment][google.cloud.dialogflow.cx.v3.Page.entry_fulfillment] of a [Page][google.cloud.dialogflow.cx.v3.Page] if
entering the page indicates that the conversation succeeded.
In a webhook response when you determine that you handled the customer
issue.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["This webpage details the `ConversationSuccess` class within the `Google.Cloud.Dialogflow.Cx.V3` namespace, which signifies a successful conversation in the Dialogflow CX platform."],["The `ConversationSuccess` class is a sealed class that implements several interfaces, including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`, allowing it to represent a message in the protocol buffer format."],["Dialogflow uses the `ConversationSuccess` message to identify successful conversations, although it does not process the message's metadata, and it also considers conversations that reach the end page as successful."],["The class can be set in the entry fulfillment of a page or within a webhook response when a customer's issue is resolved, therefore identifying when a conversation has been successfully concluded."],["The `ConversationSuccess` class has a `Metadata` property of type `Struct` for storing custom metadata, and includes two constructors: a default one and another that takes another `ConversationSuccess` object as a parameter."]]],[]]