Packages
Cloud Natural Language API client library. Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
Current section
Files
Jump to
Current section
Files
lib/google_api/language/v2/model/entity.ex
# Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# NOTE: This file is auto generated by the elixir code generator program.
# Do not edit this file manually.
defmodule GoogleApi.Language.V2.Model.Entity do
@moduledoc """
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 AnalyzeEntitySentimentRequest or if AnnotateTextRequest.Features.extract_entity_sentiment is set to true, this field will contain the aggregate sentiment expressed for this entity in the provided document.
* `type` (*type:* `String.t`, *default:* `nil`) - The entity type.
"""
use GoogleApi.Gax.ModelBase
@type t :: %__MODULE__{
:mentions => list(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
}
field(:mentions, as: GoogleApi.Language.V2.Model.EntityMention, type: :list)
field(:metadata, type: :map)
field(:name)
field(:sentiment, as: GoogleApi.Language.V2.Model.Sentiment)
field(:type)
end
defimpl Poison.Decoder, for: GoogleApi.Language.V2.Model.Entity do
def decode(value, options) do
GoogleApi.Language.V2.Model.Entity.decode(value, options)
end
end
defimpl Poison.Encoder, for: GoogleApi.Language.V2.Model.Entity do
def encode(value, options) do
GoogleApi.Gax.ModelBase.encode(value, options)
end
end