Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.14 KB

UpdateCase.md

File metadata and controls

35 lines (26 loc) · 1.14 KB

UpdateCase

Properties

Name Type Description Notes
name str Case Name [optional]
status CaseStatus [optional]
description str Case Description [optional]
metadata Dict[str, object] [optional]
start_date str Start Date [optional]
end_date str End Date [optional]
document_ids List[str] [optional]

Example

from formkiq_client.models.update_case import UpdateCase

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

# convert the object into a dict
update_case_dict = update_case_instance.to_dict()
# create an instance of UpdateCase from a dict
update_case_from_dict = UpdateCase.from_dict(update_case_dict)

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