Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

WorkItemGroupGetModel.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

WorkItemGroupGetModel

Properties

Name Type Description Notes
select_model WorkItemLocalSelectModel Model containing options to filter work items [optional]
group_type WorkItemGroupType
custom_attribute_id str [optional]

Example

from testit_api_client.models.work_item_group_get_model import WorkItemGroupGetModel

# TODO update the JSON string below
json = "{}"
# create an instance of WorkItemGroupGetModel from a JSON string
work_item_group_get_model_instance = WorkItemGroupGetModel.from_json(json)
# print the JSON string representation of the object
print(WorkItemGroupGetModel.to_json())

# convert the object into a dict
work_item_group_get_model_dict = work_item_group_get_model_instance.to_dict()
# create an instance of WorkItemGroupGetModel from a dict
work_item_group_get_model_from_dict = WorkItemGroupGetModel.from_dict(work_item_group_get_model_dict)

[Back to Model list] [Back to API list] [Back to README]