|
| 1 | +# -------------------------------------------------------------------------------------------- |
| 2 | +# Copyright (c) Microsoft Corporation. All rights reserved. |
| 3 | +# Licensed under the MIT License. See License.txt in the project root for license information. |
| 4 | +# -------------------------------------------------------------------------------------------- |
| 5 | +# Generated file, DO NOT EDIT |
| 6 | +# Changes may cause incorrect behavior and will be lost if the code is regenerated. |
| 7 | +# -------------------------------------------------------------------------------------------- |
| 8 | + |
| 9 | +from msrest.serialization import Model |
| 10 | + |
| 11 | + |
| 12 | +class CreateUserParameters(Model): |
| 13 | + """CreateUserParameters. |
| 14 | +
|
| 15 | + :param country: The user's country of residence or association. |
| 16 | + :type country: str |
| 17 | + :param data: |
| 18 | + :type data: dict |
| 19 | + :param descriptor: The user's unique identifier, and the primary means by which the user is referenced. |
| 20 | + :type descriptor: :class:`str <user.v4_1.models.str>` |
| 21 | + :param display_name: The user's name, as displayed throughout the product. |
| 22 | + :type display_name: str |
| 23 | + :param mail: The user's preferred email address. |
| 24 | + :type mail: str |
| 25 | + :param region: The region in which the user resides or is associated. |
| 26 | + :type region: str |
| 27 | + """ |
| 28 | + |
| 29 | + _attribute_map = { |
| 30 | + 'country': {'key': 'country', 'type': 'str'}, |
| 31 | + 'data': {'key': 'data', 'type': '{object}'}, |
| 32 | + 'descriptor': {'key': 'descriptor', 'type': 'str'}, |
| 33 | + 'display_name': {'key': 'displayName', 'type': 'str'}, |
| 34 | + 'mail': {'key': 'mail', 'type': 'str'}, |
| 35 | + 'region': {'key': 'region', 'type': 'str'} |
| 36 | + } |
| 37 | + |
| 38 | + def __init__(self, country=None, data=None, descriptor=None, display_name=None, mail=None, region=None): |
| 39 | + super(CreateUserParameters, self).__init__() |
| 40 | + self.country = country |
| 41 | + self.data = data |
| 42 | + self.descriptor = descriptor |
| 43 | + self.display_name = display_name |
| 44 | + self.mail = mail |
| 45 | + self.region = region |
0 commit comments