Struct gapi_grpc::google::cloud::contactcenterinsights::v1::Settings[][src]

pub struct Settings {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub language_code: String,
    pub conversation_ttl: Option<Duration>,
    pub pubsub_notification_settings: HashMap<String, String>,
    pub analysis_config: Option<AnalysisConfig>,
}

The settings resource.

Fields

name: String

Immutable. The resource name of the settings resource. Format: projects/{project}/locations/{location}/settings

create_time: Option<Timestamp>

Output only. The time at which the settings was created.

update_time: Option<Timestamp>

Output only. The time at which the settings were last updated.

language_code: String

A language code to be applied to each transcript segment unless the segment already specifies a language code. Language code defaults to “en-US” if it is neither specified on the segment nor here.

conversation_ttl: Option<Duration>

The default TTL for newly-created conversations. If a conversation has a specified expiration, that value will be used instead. Changing this value will not change the expiration of existing conversations. Conversations with no expire time persist until they are deleted.

pubsub_notification_settings: HashMap<String, String>

A map that maps a notification trigger to a Pub/Sub topic. Each time a specified trigger occurs, Insights will notify the corresponding Pub/Sub topic.

Keys are notification triggers. Supported keys are:

Values are Pub/Sub topics. The format of each Pub/Sub topic is: projects/{project}/topics/{topic}

analysis_config: Option<AnalysisConfig>

Default analysis settings.

Trait Implementations

impl Clone for Settings[src]

impl Debug for Settings[src]

impl Default for Settings[src]

impl Message for Settings[src]

impl PartialEq<Settings> for Settings[src]

impl StructuralPartialEq for Settings[src]

Auto Trait Implementations

impl RefUnwindSafe for Settings

impl Send for Settings

impl Sync for Settings

impl Unpin for Settings

impl UnwindSafe for Settings

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]