Model containing options to filter work items
Name | Type | Description | Notes |
---|---|---|---|
filter | WorkItemLocalFilterModel | Collection of filters to apply to search | [optional] |
extraction_model | WorkItemExtractionModel | Rules for different level entities inclusion/exclusion | [optional] |
from testit_api_client.models.work_item_local_select_model import WorkItemLocalSelectModel
# TODO update the JSON string below
json = "{}"
# create an instance of WorkItemLocalSelectModel from a JSON string
work_item_local_select_model_instance = WorkItemLocalSelectModel.from_json(json)
# print the JSON string representation of the object
print(WorkItemLocalSelectModel.to_json())
# convert the object into a dict
work_item_local_select_model_dict = work_item_local_select_model_instance.to_dict()
# create an instance of WorkItemLocalSelectModel from a dict
work_item_local_select_model_from_dict = WorkItemLocalSelectModel.from_dict(work_item_local_select_model_dict)