Struct gapi_grpc::google::cloud::dialogflow::v2::ConversationProfile[][src]

pub struct ConversationProfile {
    pub name: String,
    pub display_name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub automated_agent_config: Option<AutomatedAgentConfig>,
    pub human_agent_assistant_config: Option<HumanAgentAssistantConfig>,
    pub human_agent_handoff_config: Option<HumanAgentHandoffConfig>,
    pub notification_config: Option<NotificationConfig>,
    pub logging_config: Option<LoggingConfig>,
    pub new_message_event_notification_config: Option<NotificationConfig>,
    pub stt_config: Option<SpeechToTextConfig>,
    pub language_code: String,
}
[]

Defines the services to connect to incoming Dialogflow conversations.

Fields

name: String
[]

The unique identifier of this conversation profile. Format: projects/<Project ID>/locations/<Location ID>/conversationProfiles/<Conversation Profile ID>.

display_name: String
[]

Required. Human readable name for this profile. Max length 1024 bytes.

create_time: Option<Timestamp>
[]

Output only. Create time of the conversation profile.

update_time: Option<Timestamp>
[]

Output only. Update time of the conversation profile.

automated_agent_config: Option<AutomatedAgentConfig>
[]

Configuration for an automated agent to use with this profile.

human_agent_assistant_config: Option<HumanAgentAssistantConfig>
[]

Configuration for agent assistance to use with this profile.

human_agent_handoff_config: Option<HumanAgentHandoffConfig>
[]

Configuration for connecting to a live agent.

Currently, this feature is not general available, please contact Google to get access.

notification_config: Option<NotificationConfig>
[]

Configuration for publishing conversation lifecycle events.

logging_config: Option<LoggingConfig>
[]

Configuration for logging conversation lifecycle events.

new_message_event_notification_config: Option<NotificationConfig>
[]

Configuration for publishing new message events. Event will be sent in format of [ConversationEvent][google.cloud.dialogflow.v2.ConversationEvent]

stt_config: Option<SpeechToTextConfig>
[]

Settings for speech transcription.

language_code: String
[]

Language which represents the conversationProfile. If unspecified, the default language code en-us applies. Users need to create a ConversationProfile for each language they want to support.

Trait Implementations

impl Clone for ConversationProfile[src][+]

impl Debug for ConversationProfile[src][+]

impl Default for ConversationProfile[src][+]

impl Message for ConversationProfile[src][+]

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

impl StructuralPartialEq for ConversationProfile[src]

Auto Trait Implementations

impl RefUnwindSafe for ConversationProfile

impl Send for ConversationProfile

impl Sync for ConversationProfile

impl Unpin for ConversationProfile

impl UnwindSafe for ConversationProfile

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][+]