Struct google_dialogflow2::api::GoogleCloudDialogflowV2AnswerRecord [−][src]
Answer records are records to manage answer history and feedbacks for Dialogflow. Currently, answer record includes: - human agent assistant article suggestion - human agent assistant faq article It doesn't include: - DetectIntent intent matching - DetectIntent knowledge Answer records are not related to the conversation history in the Dialogflow Console. A Record is generated even when the end-user disables conversation history in the console. Records are created when there's a human agent assistant suggestion generated. A typical workflow for customers provide feedback to an answer is: 1. For human agent assistant, customers get suggestion via ListSuggestions API. Together with the answers, AnswerRecord.name are returned to the customers. 2. The customer uses the AnswerRecord.name to call the UpdateAnswerRecord method to send feedback about a specific answer that they believe is wrong.
Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- answer records patch projects (request|response)
- locations answer records patch projects (request|response)
Fields
agent_assistant_record: Option<GoogleCloudDialogflowV2AgentAssistantRecord>Output only. The record for human agent assistant.
answer_feedback: Option<GoogleCloudDialogflowV2AnswerFeedback>Required. The AnswerFeedback for this record. You can set this with AnswerRecords.UpdateAnswerRecord in order to give us feedback about this answer.
name: Option<String>The unique identifier of this answer record. Format: projects//locations//answerRecords/.
Trait Implementations
impl Clone for GoogleCloudDialogflowV2AnswerRecord[src]
fn clone(&self) -> GoogleCloudDialogflowV2AnswerRecord[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for GoogleCloudDialogflowV2AnswerRecord[src]
impl Default for GoogleCloudDialogflowV2AnswerRecord[src]
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2AnswerRecord[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDialogflowV2AnswerRecord[src]
impl ResponseResult for GoogleCloudDialogflowV2AnswerRecord[src]
impl Serialize for GoogleCloudDialogflowV2AnswerRecord[src]
Auto Trait Implementations
impl RefUnwindSafe for GoogleCloudDialogflowV2AnswerRecord[src]
impl Send for GoogleCloudDialogflowV2AnswerRecord[src]
impl Sync for GoogleCloudDialogflowV2AnswerRecord[src]
impl Unpin for GoogleCloudDialogflowV2AnswerRecord[src]
impl UnwindSafe for GoogleCloudDialogflowV2AnswerRecord[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,