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 TeamFieldValue(Model):
13    """TeamFieldValue.
14
15    :param include_children:
16    :type include_children: bool
17    :param value:
18    :type value: str
19    """
20
21    _attribute_map = {
22        'include_children': {'key': 'includeChildren', 'type': 'bool'},
23        'value': {'key': 'value', 'type': 'str'}
24    }
25
26    def __init__(self, include_children=None, value=None):
27        super(TeamFieldValue, self).__init__()
28        self.include_children = include_children
29        self.value = value
30