| Name |
Type |
Description |
Notes |
| id |
UUID |
|
|
| process_id |
str |
|
|
| definition_hash |
str |
|
|
| business_key |
str |
|
|
| state |
bytes |
Base64/raw JSON encoded internal Wazero process engine state representation |
|
| version |
int |
|
|
| completed |
bool |
|
|
| updated_at |
datetime |
|
|
| tenant_id |
str |
|
|
from nativebpm_client.models.process_instance import ProcessInstance
# TODO update the JSON string below
json = "{}"
# create an instance of ProcessInstance from a JSON string
process_instance_instance = ProcessInstance.from_json(json)
# print the JSON string representation of the object
print(ProcessInstance.to_json())
# convert the object into a dict
process_instance_dict = process_instance_instance.to_dict()
# create an instance of ProcessInstance from a dict
process_instance_from_dict = ProcessInstance.from_dict(process_instance_dict)
[Back to Model list] [Back to API list] [Back to README]