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 WorkItemTypeStateInfo(Model):
13    """WorkItemTypeStateInfo.
14
15    :param states: State name to state category map
16    :type states: dict
17    :param work_item_type_name: Work Item type name
18    :type work_item_type_name: str
19    """
20
21    _attribute_map = {
22        'states': {'key': 'states', 'type': '{str}'},
23        'work_item_type_name': {'key': 'workItemTypeName', 'type': 'str'}
24    }
25
26    def __init__(self, states=None, work_item_type_name=None):
27        super(WorkItemTypeStateInfo, self).__init__()
28        self.states = states
29        self.work_item_type_name = work_item_type_name
30