pub struct GoogleCloudDialogflowV2ConversationProfile {Show 15 fields
pub automated_agent_config: Option<GoogleCloudDialogflowV2AutomatedAgentConfig>,
pub create_time: Option<DateTime<Utc>>,
pub display_name: Option<String>,
pub human_agent_assistant_config: Option<GoogleCloudDialogflowV2HumanAgentAssistantConfig>,
pub human_agent_handoff_config: Option<GoogleCloudDialogflowV2HumanAgentHandoffConfig>,
pub language_code: Option<String>,
pub logging_config: Option<GoogleCloudDialogflowV2LoggingConfig>,
pub name: Option<String>,
pub new_message_event_notification_config: Option<GoogleCloudDialogflowV2NotificationConfig>,
pub notification_config: Option<GoogleCloudDialogflowV2NotificationConfig>,
pub security_settings: Option<String>,
pub stt_config: Option<GoogleCloudDialogflowV2SpeechToTextConfig>,
pub time_zone: Option<String>,
pub tts_config: Option<GoogleCloudDialogflowV2SynthesizeSpeechConfig>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Defines the services to connect to incoming Dialogflow conversations.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- conversation profiles create projects (request|response)
- conversation profiles get projects (response)
- conversation profiles patch projects (request|response)
- locations conversation profiles create projects (request|response)
- locations conversation profiles get projects (response)
- locations conversation profiles patch projects (request|response)
Fields§
§automated_agent_config: Option<GoogleCloudDialogflowV2AutomatedAgentConfig>Configuration for an automated agent to use with this profile.
create_time: Option<DateTime<Utc>>Output only. Create time of the conversation profile.
display_name: Option<String>Required. Human readable name for this profile. Max length 1024 bytes.
human_agent_assistant_config: Option<GoogleCloudDialogflowV2HumanAgentAssistantConfig>Configuration for agent assistance to use with this profile.
human_agent_handoff_config: Option<GoogleCloudDialogflowV2HumanAgentHandoffConfig>Configuration for connecting to a live agent. Currently, this feature is not general available, please contact Google to get access.
language_code: Option<String>Language code for the conversation profile. If not specified, the language is en-US. Language at ConversationProfile should be set for all non en-US languages. This should be a BCP-47 language tag. Example: “en-US”.
logging_config: Option<GoogleCloudDialogflowV2LoggingConfig>Configuration for logging conversation lifecycle events.
name: Option<String>The unique identifier of this conversation profile. Format: projects//locations//conversationProfiles/.
new_message_event_notification_config: Option<GoogleCloudDialogflowV2NotificationConfig>Configuration for publishing new message events. Event will be sent in format of ConversationEvent
notification_config: Option<GoogleCloudDialogflowV2NotificationConfig>Configuration for publishing conversation lifecycle events.
security_settings: Option<String>Name of the CX SecuritySettings reference for the agent. Format: projects//locations//securitySettings/.
stt_config: Option<GoogleCloudDialogflowV2SpeechToTextConfig>Settings for speech transcription.
time_zone: Option<String>The time zone of this conversational profile from the time zone database, e.g., America/New_York, Europe/Paris. Defaults to America/New_York.
tts_config: Option<GoogleCloudDialogflowV2SynthesizeSpeechConfig>Configuration for Text-to-Speech synthesization. Used by Phone Gateway to specify synthesization options. If agent defines synthesization options as well, agent settings overrides the option here.
update_time: Option<DateTime<Utc>>Output only. Update time of the conversation profile.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2ConversationProfile
impl Clone for GoogleCloudDialogflowV2ConversationProfile
Source§fn clone(&self) -> GoogleCloudDialogflowV2ConversationProfile
fn clone(&self) -> GoogleCloudDialogflowV2ConversationProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudDialogflowV2ConversationProfile
impl Default for GoogleCloudDialogflowV2ConversationProfile
Source§fn default() -> GoogleCloudDialogflowV2ConversationProfile
fn default() -> GoogleCloudDialogflowV2ConversationProfile
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2ConversationProfile
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2ConversationProfile
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 RequestValue for GoogleCloudDialogflowV2ConversationProfile
impl ResponseResult for GoogleCloudDialogflowV2ConversationProfile
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2ConversationProfile
impl RefUnwindSafe for GoogleCloudDialogflowV2ConversationProfile
impl Send for GoogleCloudDialogflowV2ConversationProfile
impl Sync for GoogleCloudDialogflowV2ConversationProfile
impl Unpin for GoogleCloudDialogflowV2ConversationProfile
impl UnwindSafe for GoogleCloudDialogflowV2ConversationProfile
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