pub struct GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig {
pub disable_high_latency_features_sync_delivery: Option<bool>,
pub feature_configs: Option<Vec<GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig>>,
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<GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionFeatureConfig>>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 GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl Clone for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Source§fn clone(
&self,
) -> GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
fn clone( &self, ) -> GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl Default for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Source§fn default() -> GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
fn default() -> GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
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 GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl RefUnwindSafe for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl Send for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl Sync for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl Unpin for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
impl UnwindSafe for GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
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