Source code for azure.cognitiveservices.language.luis.authoring.models.closed_list_entity_extractor_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 ClosedListEntityExtractor(Model): """Closed List Entity Extractor. All required parameters must be populated in order to send to Azure. :param id: Required. The ID of the Entity Model. :type id: str :param name: Name of the Entity Model. :type name: str :param type_id: The type ID of the Entity Model. :type type_id: int :param readable_type: Required. Possible values include: 'Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child Entity Extractor', 'Composite Entity Extractor', 'Closed List Entity Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', 'Regex Entity Extractor' :type readable_type: str or ~azure.cognitiveservices.language.luis.authoring.models.enum :param roles: :type roles: list[~azure.cognitiveservices.language.luis.authoring.models.EntityRole] :param sub_lists: List of sub-lists. :type sub_lists: list[~azure.cognitiveservices.language.luis.authoring.models.SubClosedListResponse] """ _validation = { 'id': {'required': True}, 'readable_type': {'required': True}, } _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'type_id': {'key': 'typeId', 'type': 'int'}, 'readable_type': {'key': 'readableType', 'type': 'str'}, 'roles': {'key': 'roles', 'type': '[EntityRole]'}, 'sub_lists': {'key': 'subLists', 'type': '[SubClosedListResponse]'}, } def __init__(self, *, id: str, readable_type, name: str=None, type_id: int=None, roles=None, sub_lists=None, **kwargs) -> None: super(ClosedListEntityExtractor, self).__init__(**kwargs) self.id = id self.name = name self.type_id = type_id self.readable_type = readable_type self.roles = roles self.sub_lists = sub_lists