View Source GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3QueryParameters (google_api_dialogflow v0.74.0)

Represents the parameters of a conversational query.

Attributes

  • analyzeQueryTextSentiment (type: boolean(), default: nil) - Configures whether sentiment analysis should be performed. If not provided, sentiment analysis is not performed.
  • currentPage (type: String.t, default: nil) - The unique identifier of the page to override the current page in the session. Format: projects//locations//agents//flows//pages/. If current_page is specified, the previous state of the session will be ignored by Dialogflow, including the previous page and the previous session parameters. In most cases, current_page and parameters should be configured together to direct a session to a specific state.
  • disableWebhook (type: boolean(), default: nil) - Whether to disable webhook calls for this request.
  • flowVersions (type: list(String.t), default: nil) - A list of flow versions to override for the request. Format: projects//locations//agents//flows//versions/. If version 1 of flow X is included in this list, the traffic of flow X will go through version 1 regardless of the version configuration in the environment. Each flow can have at most one version specified in this list.
  • geoLocation (type: GoogleApi.Dialogflow.V3.Model.GoogleTypeLatLng.t, default: nil) - The geo location of this conversational query.
  • parameters (type: map(), default: nil) - Additional parameters to be put into session parameters. To remove a parameter from the session, clients should explicitly set the parameter value to null. You can reference the session parameters in the agent with the following format: $session.params.parameter-id. Depending on your protocol or client library language, this is a map, associative array, symbol table, dictionary, or JSON object composed of a collection of (MapKey, MapValue) pairs: - MapKey type: string - MapKey value: parameter name - MapValue type: - If parameter's entity type is a composite entity: map - Else: depending on parameter value type, could be one of string, number, boolean, null, list or map - MapValue value: - If parameter's entity type is a composite entity: map from composite entity property names to property values - Else: parameter value
  • payload (type: map(), default: nil) - This field can be used to pass custom data into the webhook associated with the agent. Arbitrary JSON objects are supported. Some integrations that query a Dialogflow agent may provide additional information in the payload. In particular, for the Dialogflow Phone Gateway integration, this field has the form: { "telephony": { "caller_id": "+18558363987" } }
  • sessionEntityTypes (type: list(GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3SessionEntityType.t), default: nil) - 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.
  • timeZone (type: String.t, default: nil) - 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 the agent is used.
  • webhookHeaders (type: map(), default: nil) - 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 Dialogflow web console. The headers defined within this field will overwrite the headers configured through 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.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Link to this section Types

Specs

t() :: %GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3QueryParameters{
  analyzeQueryTextSentiment: boolean() | nil,
  currentPage: String.t() | nil,
  disableWebhook: boolean() | nil,
  flowVersions: [String.t()] | nil,
  geoLocation: GoogleApi.Dialogflow.V3.Model.GoogleTypeLatLng.t() | nil,
  parameters: map() | nil,
  payload: map() | nil,
  sessionEntityTypes:
    [
      GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3SessionEntityType.t()
    ]
    | nil,
  timeZone: String.t() | nil,
  webhookHeaders: map() | nil
}

Link to this section Functions

Specs

decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.