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 .web_api_team_ref import WebApiTeamRef
10
11
12class WebApiTeam(WebApiTeamRef):
13    """WebApiTeam.
14
15    :param id: Team (Identity) Guid. A Team Foundation ID.
16    :type id: str
17    :param name: Team name
18    :type name: str
19    :param url: Team REST API Url
20    :type url: str
21    :param description: Team description
22    :type description: str
23    :param identity_url: Identity REST API Url to this team
24    :type identity_url: str
25    """
26
27    _attribute_map = {
28        'id': {'key': 'id', 'type': 'str'},
29        'name': {'key': 'name', 'type': 'str'},
30        'url': {'key': 'url', 'type': 'str'},
31        'description': {'key': 'description', 'type': 'str'},
32        'identity_url': {'key': 'identityUrl', 'type': 'str'}
33    }
34
35    def __init__(self, id=None, name=None, url=None, description=None, identity_url=None):
36        super(WebApiTeam, self).__init__(id=id, name=name, url=url)
37        self.description = description
38        self.identity_url = identity_url
39