Struct google_dialogflow2::GoogleCloudDialogflowV2DetectIntentResponse[][src]

pub struct GoogleCloudDialogflowV2DetectIntentResponse {
    pub query_result: Option<GoogleCloudDialogflowV2QueryResult>,
    pub webhook_status: Option<GoogleRpcStatus>,
    pub response_id: Option<String>,
}

The message returned from the DetectIntent method.

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).

Fields

The selected results of the conversational query or event processing. See alternative_query_results for additional potential results.

Specifies the status of the webhook request. webhook_status is never populated in webhook requests.

The unique identifier of the response. It can be used to locate a response in the training example set or for reporting issues.

Trait Implementations

impl Default for GoogleCloudDialogflowV2DetectIntentResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for GoogleCloudDialogflowV2DetectIntentResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleCloudDialogflowV2DetectIntentResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for GoogleCloudDialogflowV2DetectIntentResponse
[src]

Auto Trait Implementations