Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 835 Bytes

JobCreated.md

File metadata and controls

29 lines (20 loc) · 835 Bytes

JobCreated

Properties

Name Type Description Notes
job_id str [optional]

Example

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]