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 BoardColumn(Model):
13    """BoardColumn.
14
15    :param column_type:
16    :type column_type: object
17    :param description:
18    :type description: str
19    :param id:
20    :type id: str
21    :param is_split:
22    :type is_split: bool
23    :param item_limit:
24    :type item_limit: int
25    :param name:
26    :type name: str
27    :param state_mappings:
28    :type state_mappings: dict
29    """
30
31    _attribute_map = {
32        'column_type': {'key': 'columnType', 'type': 'object'},
33        'description': {'key': 'description', 'type': 'str'},
34        'id': {'key': 'id', 'type': 'str'},
35        'is_split': {'key': 'isSplit', 'type': 'bool'},
36        'item_limit': {'key': 'itemLimit', 'type': 'int'},
37        'name': {'key': 'name', 'type': 'str'},
38        'state_mappings': {'key': 'stateMappings', 'type': '{str}'}
39    }
40
41    def __init__(self, column_type=None, description=None, id=None, is_split=None, item_limit=None, name=None, state_mappings=None):
42        super(BoardColumn, self).__init__()
43        self.column_type = column_type
44        self.description = description
45        self.id = id
46        self.is_split = is_split
47        self.item_limit = item_limit
48        self.name = name
49        self.state_mappings = state_mappings
50