GoogleApi.Language.V2.Model.Entity (google_api_language v0.16.3)

View Source

Represents a phrase in the text that is a known entity, such as a person, an organization, or location. The API associates information, such as probability and mentions, with entities.

Attributes

  • mentions (type: list(GoogleApi.Language.V2.Model.EntityMention.t), default: nil) - The mentions of this entity in the input document. The API currently supports proper noun mentions.
  • metadata (type: map(), default: nil) - Metadata associated with the entity. For the metadata associated with other entity types, see the Type table below.
  • name (type: String.t, default: nil) - The representative name for the entity.
  • sentiment (type: GoogleApi.Language.V2.Model.Sentiment.t, default: nil) - For calls to AnalyzeEntitySentiment this field will contain the aggregate sentiment expressed for this entity in the provided document.
  • type (type: String.t, default: nil) - The entity type.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Language.V2.Model.Entity{
  mentions: [GoogleApi.Language.V2.Model.EntityMention.t()] | nil,
  metadata: map() | nil,
  name: String.t() | nil,
  sentiment: GoogleApi.Language.V2.Model.Sentiment.t() | nil,
  type: String.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.