| Name |
Type |
Description |
Notes |
| job_id |
str |
|
[optional] |
| approval_request_id |
str |
Approval request ID. Returned when a tag triggers an approval flow. |
[optional] |
from fireblocks.models.job_created import JobCreated
# TODO update the JSON string below
json = "{}"
# create an instance of JobCreated from a JSON string
job_created_instance = JobCreated.from_json(json)
# print the JSON string representation of the object
print(JobCreated.to_json())
# convert the object into a dict
job_created_dict = job_created_instance.to_dict()
# create an instance of JobCreated from a dict
job_created_from_dict = JobCreated.from_dict(job_created_dict)
[Back to Model list] [Back to API list] [Back to README]