Enum gapi_grpc::google::cloud::dialogflow::cx::v3::response_message::Message[][src]

[]
pub enum Message {
    Text(Text),
    Payload(Struct),
    ConversationSuccess(ConversationSuccess),
    OutputAudioText(OutputAudioText),
    LiveAgentHandoff(LiveAgentHandoff),
    EndInteraction(EndInteraction),
    PlayAudio(PlayAudio),
    MixedAudio(MixedAudio),
}
[]

Required. The rich response message.

Variants

Text(Text)
[]

Returns a text response.

Payload(Struct)
[]

Returns a response containing a custom, platform-specific payload.

ConversationSuccess(ConversationSuccess)
[]

Indicates that the conversation succeeded.

OutputAudioText(OutputAudioText)
[]

A text or ssml response that is preferentially used for TTS output audio synthesis, as described in the comment on the ResponseMessage message.

LiveAgentHandoff(LiveAgentHandoff)
[]

Hands off conversation to a human agent.

EndInteraction(EndInteraction)
[]

Output only. A signal that indicates the interaction with the Dialogflow agent has ended. This message is generated by Dialogflow only when the conversation reaches END_SESSION page. It is not supposed to be defined by the user.

It’s guaranteed that there is at most one such message in each response.

PlayAudio(PlayAudio)
[]

Signal that the client should play an audio clip hosted at a client-specific URI. Dialogflow uses this to construct [mixed_audio][google.cloud.dialogflow.cx.v3.ResponseMessage.mixed_audio]. However, Dialogflow itself does not try to read or process the URI in any way.

MixedAudio(MixedAudio)
[]

Output only. An audio response message composed of both the synthesized Dialogflow agent responses and responses defined via [play_audio][google.cloud.dialogflow.cx.v3.ResponseMessage.play_audio]. This message is generated by Dialogflow only and not supposed to be defined by the user.

Implementations

impl Message[src][]

pub fn encode<B>(&self, buf: &mut B) where
    B: BufMut
[src]

pub fn merge<B>(
    field: &mut Option<Message>,
    tag: u32,
    wire_type: WireType,
    buf: &mut B,
    ctx: DecodeContext
) -> Result<(), DecodeError> where
    B: Buf
[src]

pub fn encoded_len(&self) -> usize[src]

Trait Implementations

impl Clone for Message[src][+]

impl Debug for Message[src][+]

impl PartialEq<Message> for Message[src][+]

impl StructuralPartialEq for Message[src]

Auto Trait Implementations

impl RefUnwindSafe for Message

impl Send for Message

impl Sync for Message

impl Unpin for Message

impl UnwindSafe for Message

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T> Instrument for T[src][+]

impl<T> Instrument for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> IntoRequest<T> for T[src][+]

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src][+]

impl<T> WithSubscriber for T[src][+]