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 BoardReference(Model):
13    """BoardReference.
14
15    :param id: Id of the resource
16    :type id: str
17    :param name: Name of the resource
18    :type name: str
19    :param url: Full http link to the resource
20    :type url: str
21    """
22
23    _attribute_map = {
24        'id': {'key': 'id', 'type': 'str'},
25        'name': {'key': 'name', 'type': 'str'},
26        'url': {'key': 'url', 'type': 'str'}
27    }
28
29    def __init__(self, id=None, name=None, url=None):
30        super(BoardReference, self).__init__()
31        self.id = id
32        self.name = name
33        self.url = url
34