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 TeamContext(Model):
13    """TeamContext.
14
15    :param project: The team project Id or name.  Ignored if ProjectId is set.
16    :type project: str
17    :param project_id: The Team Project ID.  Required if Project is not set.
18    :type project_id: str
19    :param team: The Team Id or name.  Ignored if TeamId is set.
20    :type team: str
21    :param team_id: The Team Id
22    :type team_id: str
23    """
24
25    _attribute_map = {
26        'project': {'key': 'project', 'type': 'str'},
27        'project_id': {'key': 'projectId', 'type': 'str'},
28        'team': {'key': 'team', 'type': 'str'},
29        'team_id': {'key': 'teamId', 'type': 'str'}
30    }
31
32    def __init__(self, project=None, project_id=None, team=None, team_id=None):
33        super(TeamContext, self).__init__()
34        self.project = project
35        self.project_id = project_id
36        self.team = team
37        self.team_id = team_id
38