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

Entities are extracted from user input and represent parameters that are meaningful to your application. For example, a date range, a proper name such as a geographic location or landmark, and so on. Entities represent actionable data for your application. When you define an entity, you can also include synonyms that all map to that entity. For example, "soft drink", "soda", "pop", and so on. There are three types of entities: System - entities that are defined by the Dialogflow API for common data types such as date, time, currency, and so on. A system entity is represented by the EntityType type. Custom - entities that are defined by you that represent actionable data that is meaningful to your application. For example, you could define a pizza.sauce entity for red or white pizza sauce, a pizza.cheese entity for the different types of cheese on a pizza, a pizza.topping entity for different toppings, and so on. A custom entity is represented by the EntityType type. *User - entities that are built for an individual user such as favorites, preferences, playlists, and so on. A user entity is represented by the SessionEntityType type. For more information about entity types, see the Dialogflow documentation.

Attributes

  • autoExpansionMode (type: String.t, default: nil) - Indicates whether the entity type can be automatically expanded.
  • displayName (type: String.t, default: nil) - Required. The human-readable name of the entity type, unique within the agent.
  • enableFuzzyExtraction (type: boolean(), default: nil) - Enables fuzzy entity extraction during classification.
  • entities (type: list(GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EntityTypeEntity.t), default: nil) - The collection of entity entries associated with the entity type.
  • excludedPhrases (type: list(GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase.t), default: nil) - Collection of exceptional words and phrases that shouldn't be matched. For example, if you have a size entity type with entry giant(an adjective), you might consider adding giants(a noun) as an exclusion. If the kind of entity type is KIND_MAP, then the phrases specified by entities and excluded phrases should be mutually exclusive.
  • kind (type: String.t, default: nil) - Required. Indicates the kind of entity type.
  • name (type: String.t, default: nil) - The unique identifier of the entity type. Required for EntityTypes.UpdateEntityType. Format: projects//locations//agents//entityTypes/.
  • redact (type: boolean(), default: nil) - Indicates whether parameters of the entity type should be redacted in log. If redaction is enabled, page parameters and intent parameters referring to the entity type will be replaced by parameter name when logging.

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.GoogleCloudDialogflowCxV3EntityType{
  autoExpansionMode: String.t() | nil,
  displayName: String.t() | nil,
  enableFuzzyExtraction: boolean() | nil,
  entities:
    [
      GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EntityTypeEntity.t()
    ]
    | nil,
  excludedPhrases:
    [
      GoogleApi.Dialogflow.V3.Model.GoogleCloudDialogflowCxV3EntityTypeExcludedPhrase.t()
    ]
    | nil,
  kind: String.t() | nil,
  name: String.t() | nil,
  redact: boolean() | nil
}

Link to this section Functions

Specs

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

Unwrap a decoded JSON object into its complex fields.