Struct gapi_grpc::google::cloud::dialogflow::v2::QueryParameters[][src]

pub struct QueryParameters {
    pub time_zone: String,
    pub geo_location: Option<LatLng>,
    pub contexts: Vec<Context>,
    pub reset_contexts: bool,
    pub session_entity_types: Vec<SessionEntityType>,
    pub payload: Option<Struct>,
    pub sentiment_analysis_request_config: Option<SentimentAnalysisRequestConfig>,
    pub webhook_headers: HashMap<String, String>,
}

Represents the parameters of the conversational query.

Fields

time_zone: String

The time zone of this conversational query from the time zone database, e.g., America/New_York, Europe/Paris. If not provided, the time zone specified in agent settings is used.

geo_location: Option<LatLng>

The geo location of this conversational query.

contexts: Vec<Context>

The collection of contexts to be activated before this query is executed.

reset_contexts: bool

Specifies whether to delete all contexts in the current session before the new ones are activated.

session_entity_types: Vec<SessionEntityType>

Additional session entity types to replace or extend developer entity types with. The entity synonyms apply to all languages and persist for the session of this query.

payload: Option<Struct>

This field can be used to pass custom data to your webhook. Arbitrary JSON objects are supported. If supplied, the value is used to populate the WebhookRequest.original_detect_intent_request.payload field sent to your webhook.

sentiment_analysis_request_config: Option<SentimentAnalysisRequestConfig>

Configures the type of sentiment analysis to perform. If not provided, sentiment analysis is not performed.

webhook_headers: HashMap<String, String>

This field can be used to pass HTTP headers for a webhook call. These headers will be sent to webhook along with the headers that have been configured through the Dialogflow web console. The headers defined within this field will overwrite the headers configured through the Dialogflow console if there is a conflict. Header names are case-insensitive. Google’s specified headers are not allowed. Including: “Host”, “Content-Length”, “Connection”, “From”, “User-Agent”, “Accept-Encoding”, “If-Modified-Since”, “If-None-Match”, “X-Forwarded-For”, etc.

Trait Implementations

impl Clone for QueryParameters[src]

impl Debug for QueryParameters[src]

impl Default for QueryParameters[src]

impl Message for QueryParameters[src]

impl PartialEq<QueryParameters> for QueryParameters[src]

impl StructuralPartialEq for QueryParameters[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryParameters

impl Send for QueryParameters

impl Sync for QueryParameters

impl Unpin for QueryParameters

impl UnwindSafe for QueryParameters

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]