Source code for azure.mgmt.datamigration.models.quota_name_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 QuotaName(Model): """The name of the quota. :param localized_value: The localized name of the quota :type localized_value: str :param value: The unlocalized name (or ID) of the quota :type value: str """ _attribute_map = { 'localized_value': {'key': 'localizedValue', 'type': 'str'}, 'value': {'key': 'value', 'type': 'str'}, } def __init__(self, *, localized_value: str=None, value: str=None, **kwargs) -> None: super(QuotaName, self).__init__(**kwargs) self.localized_value = localized_value self.value = value