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 WorkItemColor(Model):
13    """WorkItemColor.
14
15    :param icon:
16    :type icon: str
17    :param primary_color:
18    :type primary_color: str
19    :param work_item_type_name:
20    :type work_item_type_name: str
21    """
22
23    _attribute_map = {
24        'icon': {'key': 'icon', 'type': 'str'},
25        'primary_color': {'key': 'primaryColor', 'type': 'str'},
26        'work_item_type_name': {'key': 'workItemTypeName', 'type': 'str'}
27    }
28
29    def __init__(self, icon=None, primary_color=None, work_item_type_name=None):
30        super(WorkItemColor, self).__init__()
31        self.icon = icon
32        self.primary_color = primary_color
33        self.work_item_type_name = work_item_type_name
34