Source code for azure.cognitiveservices.knowledge.qnamaker.models.word_alterations_dto_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 WordAlterationsDTO(Model): """Collection of word alterations. All required parameters must be populated in order to send to Azure. :param word_alterations: Required. Collection of word alterations. :type word_alterations: list[~azure.cognitiveservices.knowledge.qnamaker.models.AlterationsDTO] """ _validation = { 'word_alterations': {'required': True}, } _attribute_map = { 'word_alterations': {'key': 'wordAlterations', 'type': '[AlterationsDTO]'}, } def __init__(self, *, word_alterations, **kwargs) -> None: super(WordAlterationsDTO, self).__init__(**kwargs) self.word_alterations = word_alterations