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
9from msrest.serialization import Model
10
11
12class PermissionEvaluationBatch(Model):
13    """PermissionEvaluationBatch.
14
15    :param always_allow_administrators:
16    :type always_allow_administrators: bool
17    :param evaluations: Array of permission evaluations to evaluate.
18    :type evaluations: list of :class:`PermissionEvaluation <security.v4_0.models.PermissionEvaluation>`
19    """
20
21    _attribute_map = {
22        'always_allow_administrators': {'key': 'alwaysAllowAdministrators', 'type': 'bool'},
23        'evaluations': {'key': 'evaluations', 'type': '[PermissionEvaluation]'}
24    }
25
26    def __init__(self, always_allow_administrators=None, evaluations=None):
27        super(PermissionEvaluationBatch, self).__init__()
28        self.always_allow_administrators = always_allow_administrators
29        self.evaluations = evaluations
30