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

pub struct ArticleSuggestionData {
    pub title: String,
    pub uri: String,
    pub confidence_score: f32,
    pub metadata: HashMap<String, String>,
    pub query_record: String,
    pub source: String,
}

Agent Assist Article Suggestion data.

Fields

title: String

Article title.

uri: String

Article URI.

confidence_score: f32

The system’s confidence score that this article is a good match for this conversation, ranging from 0.0 (completely uncertain) to 1.0 (completely certain).

metadata: HashMap<String, String>

Map that contains metadata about the Article Suggestion and the document that it originates from.

query_record: String

Name of the query record. Format: projects/{project}/locations/{location}/queryRecords/{query_record}

source: String

The knowledge document that this answer was extracted from. Format: projects/{project}/knowledgeBases/{knowledge_base}/documents/{document}

Trait Implementations

impl Clone for ArticleSuggestionData[src]

impl Debug for ArticleSuggestionData[src]

impl Default for ArticleSuggestionData[src]

impl Message for ArticleSuggestionData[src]

impl PartialEq<ArticleSuggestionData> for ArticleSuggestionData[src]

impl StructuralPartialEq for ArticleSuggestionData[src]

Auto Trait Implementations

impl RefUnwindSafe for ArticleSuggestionData

impl Send for ArticleSuggestionData

impl Sync for ArticleSuggestionData

impl Unpin for ArticleSuggestionData

impl UnwindSafe for ArticleSuggestionData

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]