# 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 LabCreationParameters(Model):
"""Settings related to creating a lab.
:param max_users_in_lab: Maximum number of users allowed in the lab.
:type max_users_in_lab: int
"""
_attribute_map = {
'max_users_in_lab': {'key': 'maxUsersInLab', 'type': 'int'},
}
def __init__(self, *, max_users_in_lab: int=None, **kwargs) -> None:
super(LabCreationParameters, self).__init__(**kwargs)
self.max_users_in_lab = max_users_in_lab