Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.3 KB

Case.md

File metadata and controls

39 lines (30 loc) · 1.3 KB

Case

Properties

Name Type Description Notes
case_id str Case Identifier [optional]
case_number str Case Number [optional]
document_number str Document Number [optional]
start_date str Start Date [optional]
end_date str End Date [optional]
inserted_date str Inserted Timestamp [optional]
name str Case Name [optional]
description str Case Description [optional]
metadata Dict[str, object] [optional]
status CaseStatus [optional]
user_id str User who added document [optional]

Example

from formkiq_client.models.case import Case

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

# convert the object into a dict
case_dict = case_instance.to_dict()
# create an instance of Case from a dict
case_from_dict = Case.from_dict(case_dict)

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