pub struct GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig {
pub disable_high_latency_features_sync_delivery: Option<bool>,
pub feature_configs: Option<Vec<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig>>,
pub generators: Option<Vec<String>>,
pub group_suggestion_responses: Option<bool>,
}
Expand description
Detail human agent assistant config.
This type is not used in any activity, and only used as part of another schema.
Fields§
§disable_high_latency_features_sync_delivery: Option<bool>
Optional. When disable_high_latency_features_sync_delivery is true and using the AnalyzeContent API, we will not deliver the responses from high latency features in the API response. The human_agent_assistant_config.notification_config must be configured and enable_event_based_suggestion must be set to true to receive the responses from high latency features in Pub/Sub. High latency feature(s): KNOWLEDGE_ASSIST
feature_configs: Option<Vec<GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig>>
Configuration of different suggestion features. One feature can have only one config.
generators: Option<Vec<String>>
Optional. List of various generator resource names used in the conversation profile.
group_suggestion_responses: Option<bool>
If group_suggestion_responses
is false, and there are multiple feature_configs
in event based suggestion
or StreamingAnalyzeContent, we will try to deliver suggestions to customers as soon as we get new suggestion. Different type of suggestions based on the same context will be in separate Pub/Sub event or StreamingAnalyzeContentResponse
. If group_suggestion_responses
set to true. All the suggestions to the same participant based on the same context will be grouped into a single Pub/Sub event or StreamingAnalyzeContentResponse.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl Clone for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Source§fn clone(
&self,
) -> GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
fn clone( &self, ) -> GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl Default for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Source§fn default() -> GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
fn default() -> GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
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 GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl RefUnwindSafe for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl Send for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl Sync for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl Unpin for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
impl UnwindSafe for GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
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