Struct google_dialogflow2_beta1::Intent [] [src]

pub struct Intent {
    pub webhook_state: Option<String>,
    pub default_response_platforms: Option<Vec<String>>,
    pub action: Option<String>,
    pub ml_enabled: Option<bool>,
    pub output_contexts: Option<Vec<Context>>,
    pub is_fallback: Option<bool>,
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub parameters: Option<Vec<IntentParameter>>,
    pub parent_followup_intent_name: Option<String>,
    pub followup_intent_info: Option<Vec<IntentFollowupIntentInfo>>,
    pub training_phrases: Option<Vec<IntentTrainingPhrase>>,
    pub messages: Option<Vec<IntentMessage>>,
    pub priority: Option<i32>,
    pub root_followup_intent_name: Option<String>,
    pub input_context_names: Option<Vec<String>>,
    pub reset_contexts: Option<bool>,
    pub events: Option<Vec<String>>,
}

Represents an intent. Intents convert a number of user expressions or patterns into an action. An action is an extraction of a user command or sentence semantics.

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

Required. Indicates whether webhooks are enabled for the intent.

Optional. The list of platforms for which the first response will be taken from among the messages assigned to the DEFAULT_PLATFORM.

Optional. The name of the action associated with the intent.

Optional. Indicates whether Machine Learning is enabled for the intent. Note: If ml_enabled setting is set to false, then this intent is not taken into account during inference in ML ONLY match mode. Also, auto-markup in the UI is turned off.

Optional. The collection of contexts that are activated when the intent is matched. Context messages in this collection should not set the parameters field. Setting the lifespan_count to 0 will reset the context when the intent is matched. Format: projects/<Project ID>/agent/sessions/-/contexts/<Context ID>.

Optional. Indicates whether this is a fallback intent.

Required. The name of this intent.

Required for all methods except create (create populates the name automatically. The unique identifier of this intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

Optional. The collection of parameters associated with the intent.

The unique identifier of the parent intent in the chain of followup intents. It identifies the parent followup intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

Optional. Collection of information about all followup intents that have name of this intent as a root_name.

Optional. The collection of examples/templates that the agent is trained on.

Optional. The collection of rich messages corresponding to the Response field in API.AI console.

Optional. The priority of this intent. Higher numbers represent higher priorities. Zero or negative numbers mean that the intent is disabled.

The unique identifier of the root intent in the chain of followup intents. It identifies the correct followup intents chain for this intent. Format: projects/<Project ID>/agent/intents/<Intent ID>.

Optional. The list of context names required for this intent to be triggered. Format: projects/<Project ID>/agent/sessions/-/contexts/<Context ID>.

Optional. Indicates whether to delete all contexts in the current session when this intent is matched.

Optional. The collection of event names that trigger the intent. If the collection of input contexts is not empty, all of the contexts must be present in the active user session for an event to trigger this intent.

Trait Implementations

impl Default for Intent
[src]

[src]

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

impl Clone for Intent
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Intent
[src]

[src]

Formats the value using the given formatter.

impl RequestValue for Intent
[src]

impl ResponseResult for Intent
[src]