Source code for azure.cognitiveservices.knowledge.qnamaker.models.endpoint_settings_dto_active_learning_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 .active_learning_settings_dto_py3 import ActiveLearningSettingsDTO


[docs]class EndpointSettingsDTOActiveLearning(ActiveLearningSettingsDTO): """Active Learning settings of the endpoint. :param enable: True/False string providing Active Learning :type enable: str """ _attribute_map = { 'enable': {'key': 'enable', 'type': 'str'}, } def __init__(self, *, enable: str=None, **kwargs) -> None: super(EndpointSettingsDTOActiveLearning, self).__init__(enable=enable, **kwargs)