Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

StartInstanceRequest

Properties

Name Type Description Notes
instance_id UUID Optional user-generated UUID to enforce idempotency [optional]
business_key str Business tracking keyword [optional]
variables Dict[str, object] [optional]

Example

from nativebpm_client.models.start_instance_request import StartInstanceRequest

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

# convert the object into a dict
start_instance_request_dict = start_instance_request_instance.to_dict()
# create an instance of StartInstanceRequest from a dict
start_instance_request_from_dict = StartInstanceRequest.from_dict(start_instance_request_dict)

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