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

pub struct FaqAnswerData {
    pub answer: String,
    pub confidence_score: f32,
    pub question: String,
    pub metadata: HashMap<String, String>,
    pub query_record: String,
    pub source: String,
}

Agent Assist frequently-asked-question answer data.

Fields

answer: String

The piece of text from the source knowledge base document.

confidence_score: f32

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

question: String

The corresponding FAQ question.

metadata: HashMap<String, String>

Map that contains metadata about the FAQ answer 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 FaqAnswerData[src]

impl Debug for FaqAnswerData[src]

impl Default for FaqAnswerData[src]

impl Message for FaqAnswerData[src]

impl PartialEq<FaqAnswerData> for FaqAnswerData[src]

impl StructuralPartialEq for FaqAnswerData[src]

Auto Trait Implementations

impl RefUnwindSafe for FaqAnswerData

impl Send for FaqAnswerData

impl Sync for FaqAnswerData

impl Unpin for FaqAnswerData

impl UnwindSafe for FaqAnswerData

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]