Source code for azure.cognitiveservices.language.luis.authoring.models.features_response_object_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 FeaturesResponseObject(Model): """Model Features, including Patterns and Phraselists. :param phraselist_features: :type phraselist_features: list[~azure.cognitiveservices.language.luis.authoring.models.PhraseListFeatureInfo] :param pattern_features: :type pattern_features: list[~azure.cognitiveservices.language.luis.authoring.models.PatternFeatureInfo] """ _attribute_map = { 'phraselist_features': {'key': 'phraselistFeatures', 'type': '[PhraseListFeatureInfo]'}, 'pattern_features': {'key': 'patternFeatures', 'type': '[PatternFeatureInfo]'}, } def __init__(self, *, phraselist_features=None, pattern_features=None, **kwargs) -> None: super(FeaturesResponseObject, self).__init__(**kwargs) self.phraselist_features = phraselist_features self.pattern_features = pattern_features