Source code for azure.cognitiveservices.language.luis.authoring.models.prebuilt_domain_create_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 PrebuiltDomainCreateObject(Model): """A prebuilt domain create object containing the name and culture of the domain. :param domain_name: The domain name. :type domain_name: str :param culture: The culture of the new domain. :type culture: str """ _attribute_map = { 'domain_name': {'key': 'domainName', 'type': 'str'}, 'culture': {'key': 'culture', 'type': 'str'}, } def __init__(self, *, domain_name: str=None, culture: str=None, **kwargs) -> None: super(PrebuiltDomainCreateObject, self).__init__(**kwargs) self.domain_name = domain_name self.culture = culture