Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.3 KB

WorkItemLocalSelectModel.md

File metadata and controls

31 lines (22 loc) · 1.3 KB

WorkItemLocalSelectModel

Model containing options to filter work items

Properties

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]

Example

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)

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