Source code for azure.cognitiveservices.language.textanalytics.models.entity_record_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class EntityRecord(Model): """EntityRecord. Variables are only populated by the server, and will be ignored when sending a request. :param name: Entity formal name. :type name: str :param matches: List of instances this entity appears in the text. :type matches: list[~azure.cognitiveservices.language.textanalytics.models.MatchRecord] :param wikipedia_language: Wikipedia language for which the WikipediaId and WikipediaUrl refers to. :type wikipedia_language: str :param wikipedia_id: Wikipedia unique identifier of the recognized entity. :type wikipedia_id: str :ivar wikipedia_url: URL for the entity's Wikipedia page. :vartype wikipedia_url: str :param bing_id: Bing unique identifier of the recognized entity. Use in conjunction with the Bing Entity Search API to fetch additional relevant information. :type bing_id: str :param type: Entity type from Named Entity Recognition model :type type: str :param sub_type: Entity sub type from Named Entity Recognition model :type sub_type: str """ _validation = { 'wikipedia_url': {'readonly': True}, } _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'matches': {'key': 'matches', 'type': '[MatchRecord]'}, 'wikipedia_language': {'key': 'wikipediaLanguage', 'type': 'str'}, 'wikipedia_id': {'key': 'wikipediaId', 'type': 'str'}, 'wikipedia_url': {'key': 'wikipediaUrl', 'type': 'str'}, 'bing_id': {'key': 'bingId', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'sub_type': {'key': 'subType', 'type': 'str'}, } def __init__(self, *, name: str=None, matches=None, wikipedia_language: str=None, wikipedia_id: str=None, bing_id: str=None, type: str=None, sub_type: str=None, **kwargs) -> None: super(EntityRecord, self).__init__(**kwargs) self.name = name self.matches = matches self.wikipedia_language = wikipedia_language self.wikipedia_id = wikipedia_id self.wikipedia_url = None self.bing_id = bing_id self.type = type self.sub_type = sub_type