Cell limits
CellLimits
Bases: GenericRequestMethod
Class responsible to make calls to Kanbanize cell limits endpoints
Source code in kanbanize_sdk/endpoints/cell_limits.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
list(board_id, *args, **kwargs)
This method is responsible to list all cell limits from the board into the platform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
board_id |
int
|
An integer parameter that represents the selected board object. |
required |
Returns:
| Type | Description |
|---|---|
list
|
An array with multiples cell limit objects |
Source code in kanbanize_sdk/endpoints/cell_limits.py
19 20 21 22 23 24 25 26 27 28 29 30 | |
update(board_id, body, *args, **kwargs)
This method is responsible to update one cell limit from the board into the platform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
board_id |
int
|
An integer that represents the selected board object. |
required |
body |
CellLimitsUpdateBody | dict
|
It's a dataclass object that provide all needed request body to update a cell limit object. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
An cell limit object with the basic information data. |
Source code in kanbanize_sdk/endpoints/cell_limits.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |