|
| 1 | +# IssueDetail |
| 2 | + |
| 3 | +Comprehensive work item serializer with full relationship management. Handles complete work item lifecycle including assignees, labels, validation, and related model updates. Supports dynamic field expansion and HTML content processing. |
| 4 | + |
| 5 | +## Properties |
| 6 | +Name | Type | Description | Notes |
| 7 | +------------ | ------------- | ------------- | ------------- |
| 8 | +**id** | **str** | | [optional] [readonly] |
| 9 | +**assignees** | [**List[UserLite]**](UserLite.md) | | |
| 10 | +**labels** | [**List[Label]**](Label.md) | | |
| 11 | +**type_id** | **str** | | [optional] |
| 12 | +**created_at** | **datetime** | | [optional] [readonly] |
| 13 | +**updated_at** | **datetime** | | [optional] [readonly] |
| 14 | +**deleted_at** | **datetime** | | [optional] |
| 15 | +**point** | **int** | | [optional] |
| 16 | +**name** | **str** | | |
| 17 | +**description_html** | **str** | | [optional] |
| 18 | +**description_stripped** | **str** | | [optional] |
| 19 | +**description_binary** | **bytearray** | | [optional] [readonly] |
| 20 | +**priority** | [**PriorityEnum**](PriorityEnum.md) | | [optional] |
| 21 | +**start_date** | **date** | | [optional] |
| 22 | +**target_date** | **date** | | [optional] |
| 23 | +**sequence_id** | **int** | | [optional] |
| 24 | +**sort_order** | **float** | | [optional] |
| 25 | +**completed_at** | **datetime** | | [optional] |
| 26 | +**archived_at** | **date** | | [optional] |
| 27 | +**is_draft** | **bool** | | [optional] |
| 28 | +**external_source** | **str** | | [optional] |
| 29 | +**external_id** | **str** | | [optional] |
| 30 | +**created_by** | **str** | | [optional] |
| 31 | +**updated_by** | **str** | | [optional] [readonly] |
| 32 | +**project** | **str** | | [optional] [readonly] |
| 33 | +**workspace** | **str** | | [optional] [readonly] |
| 34 | +**parent** | **str** | | [optional] |
| 35 | +**state** | **str** | | [optional] |
| 36 | +**estimate_point** | **str** | | [optional] |
| 37 | +**type** | **str** | | [optional] |
| 38 | + |
| 39 | +## Example |
| 40 | + |
| 41 | +```python |
| 42 | +from plane.models.issue_detail import IssueDetail |
| 43 | + |
| 44 | +# TODO update the JSON string below |
| 45 | +json = "{}" |
| 46 | +# create an instance of IssueDetail from a JSON string |
| 47 | +issue_detail_instance = IssueDetail.from_json(json) |
| 48 | +# print the JSON string representation of the object |
| 49 | +print IssueDetail.to_json() |
| 50 | + |
| 51 | +# convert the object into a dict |
| 52 | +issue_detail_dict = issue_detail_instance.to_dict() |
| 53 | +# create an instance of IssueDetail from a dict |
| 54 | +issue_detail_from_dict = IssueDetail.from_dict(issue_detail_dict) |
| 55 | +``` |
| 56 | +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) |
| 57 | + |
| 58 | + |
0 commit comments