pub struct GoogleCloudDialogflowV2Intent {Show 20 fields
pub action: Option<String>,
pub default_response_platforms: Option<Vec<String>>,
pub display_name: Option<String>,
pub end_interaction: Option<bool>,
pub events: Option<Vec<String>>,
pub followup_intent_info: Option<Vec<GoogleCloudDialogflowV2IntentFollowupIntentInfo>>,
pub input_context_names: Option<Vec<String>>,
pub is_fallback: Option<bool>,
pub live_agent_handoff: Option<bool>,
pub messages: Option<Vec<GoogleCloudDialogflowV2IntentMessage>>,
pub ml_disabled: Option<bool>,
pub name: Option<String>,
pub output_contexts: Option<Vec<GoogleCloudDialogflowV2Context>>,
pub parameters: Option<Vec<GoogleCloudDialogflowV2IntentParameter>>,
pub parent_followup_intent_name: Option<String>,
pub priority: Option<i32>,
pub reset_contexts: Option<bool>,
pub root_followup_intent_name: Option<String>,
pub training_phrases: Option<Vec<GoogleCloudDialogflowV2IntentTrainingPhrase>>,
pub webhook_state: Option<String>,
}
Expand description
An intent categorizes an end-user’s intention for one conversation turn. For each agent, you define many intents, where your combined intents can handle a complete conversation. When an end-user writes or says something, referred to as an end-user expression or end-user input, Dialogflow matches the end-user input to the best intent in your agent. Matching an intent is also known as intent classification. For more information, see the intent guide.
§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).
- agent intents create projects (request|response)
- agent intents get projects (response)
- agent intents patch projects (request|response)
- locations agent intents create projects (request|response)
- locations agent intents get projects (response)
- locations agent intents patch projects (request|response)
Fields§
§action: Option<String>
Optional. The name of the action associated with the intent. Note: The action name must not contain whitespaces.
default_response_platforms: Option<Vec<String>>
Optional. The list of platforms for which the first responses will be copied from the messages in PLATFORM_UNSPECIFIED (i.e. default platform).
display_name: Option<String>
Required. The name of this intent.
end_interaction: Option<bool>
Optional. Indicates that this intent ends an interaction. Some integrations (e.g., Actions on Google or Dialogflow phone gateway) use this information to close interaction with an end user. Default is false.
events: Option<Vec<String>>
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. Event names are limited to 150 characters.
followup_intent_info: Option<Vec<GoogleCloudDialogflowV2IntentFollowupIntentInfo>>
Output only. Read-only. Information about all followup intents that have this intent as a direct or indirect parent. We populate this field only in the output.
input_context_names: Option<Vec<String>>
Optional. The list of context names required for this intent to be triggered. Format: projects//agent/sessions/-/contexts/
.
is_fallback: Option<bool>
Optional. Indicates whether this is a fallback intent.
live_agent_handoff: Option<bool>
Optional. Indicates that a live agent should be brought in to handle the interaction with the user. In most cases, when you set this flag to true, you would also want to set end_interaction to true as well. Default is false.
messages: Option<Vec<GoogleCloudDialogflowV2IntentMessage>>
Optional. The collection of rich messages corresponding to the Response
field in the Dialogflow console.
ml_disabled: Option<bool>
Optional. Indicates whether Machine Learning is disabled for the intent. Note: If ml_disabled
setting is set to true, then this intent is not taken into account during inference in ML ONLY
match mode. Also, auto-markup in the UI is turned off.
name: Option<String>
Optional. The unique identifier of this intent. Required for Intents.UpdateIntent and Intents.BatchUpdateIntents methods. Format: projects//agent/intents/
.
output_contexts: Option<Vec<GoogleCloudDialogflowV2Context>>
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//agent/sessions/-/contexts/
.
parameters: Option<Vec<GoogleCloudDialogflowV2IntentParameter>>
Optional. The collection of parameters associated with the intent.
parent_followup_intent_name: Option<String>
Read-only after creation. The unique identifier of the parent intent in the chain of followup intents. You can set this field when creating an intent, for example with CreateIntent or BatchUpdateIntents, in order to make this intent a followup intent. It identifies the parent followup intent. Format: projects//agent/intents/
.
priority: Option<i32>
Optional. The priority of this intent. Higher numbers represent higher priorities. - If the supplied value is unspecified or 0, the service translates the value to 500,000, which corresponds to the Normal
priority in the console. - If the supplied value is negative, the intent is ignored in runtime detect intent requests.
reset_contexts: Option<bool>
Optional. Indicates whether to delete all contexts in the current session when this intent is matched.
root_followup_intent_name: Option<String>
Output only. Read-only. The unique identifier of the root intent in the chain of followup intents. It identifies the correct followup intents chain for this intent. We populate this field only in the output. Format: projects//agent/intents/
.
training_phrases: Option<Vec<GoogleCloudDialogflowV2IntentTrainingPhrase>>
Optional. The collection of examples that the agent is trained on.
webhook_state: Option<String>
Optional. Indicates whether webhooks are enabled for the intent.
Trait Implementations§
Source§impl Clone for GoogleCloudDialogflowV2Intent
impl Clone for GoogleCloudDialogflowV2Intent
Source§fn clone(&self) -> GoogleCloudDialogflowV2Intent
fn clone(&self) -> GoogleCloudDialogflowV2Intent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDialogflowV2Intent
impl Default for GoogleCloudDialogflowV2Intent
Source§fn default() -> GoogleCloudDialogflowV2Intent
fn default() -> GoogleCloudDialogflowV2Intent
Source§impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Intent
impl<'de> Deserialize<'de> for GoogleCloudDialogflowV2Intent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl RequestValue for GoogleCloudDialogflowV2Intent
impl ResponseResult for GoogleCloudDialogflowV2Intent
Auto Trait Implementations§
impl Freeze for GoogleCloudDialogflowV2Intent
impl RefUnwindSafe for GoogleCloudDialogflowV2Intent
impl Send for GoogleCloudDialogflowV2Intent
impl Sync for GoogleCloudDialogflowV2Intent
impl Unpin for GoogleCloudDialogflowV2Intent
impl UnwindSafe for GoogleCloudDialogflowV2Intent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more