Source code for azure.cognitiveservices.language.luis.authoring.models.closed_list_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 ClosedList(Model): """Exported Model - A Closed List. :param name: Name of the closed list feature. :type name: str :param sub_lists: Sublists for the feature. :type sub_lists: list[~azure.cognitiveservices.language.luis.authoring.models.SubClosedList] :param roles: :type roles: list[str] """ _attribute_map = { 'name': {'key': 'name', 'type': 'str'}, 'sub_lists': {'key': 'subLists', 'type': '[SubClosedList]'}, 'roles': {'key': 'roles', 'type': '[str]'}, } def __init__(self, *, name: str=None, sub_lists=None, roles=None, **kwargs) -> None: super(ClosedList, self).__init__(**kwargs) self.name = name self.sub_lists = sub_lists self.roles = roles