pub struct GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess {
pub metadata: Option<HashMap<String, Value>>,
}Expand description
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. You may set this, for example: * In the entry_fulfillment of a Page if entering the page indicates that the conversation succeeded. * In a webhook response when you determine that you handled the customer issue.
This type is not used in any activity, and only used as part of another schema.
Fields§
§metadata: Option<HashMap<String, Value>>Custom metadata. Dialogflow doesn’t impose any structure on this.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl Clone for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Source§fn clone(&self) -> GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
fn clone(&self) -> GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl Default for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Source§fn default() -> GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
fn default() -> GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl<'de> Deserialize<'de> for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl RefUnwindSafe for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl Send for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl Sync for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl Unpin for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
impl UnwindSafe for GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more