Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1 KB

Job.md

File metadata and controls

36 lines (27 loc) · 1 KB

Job

Properties

Name Type Description Notes
id str [optional]
tenant_id str [optional]
type str [optional]
user_id str [optional]
created float [optional]
updated float [optional]
state str [optional]
tasks List[Task] [optional]

Example

from fireblocks.models.job import Job

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

# convert the object into a dict
job_dict = job_instance.to_dict()
# create an instance of Job from a dict
job_from_dict = Job.from_dict(job_dict)

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