Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

JobStatus

Properties

Name Type Description Notes
job_id str Job ID can be used to check the status of the print request. [optional]
status str Refers to the status of Print Job. [optional]
print_status_transaction List[JobStatusPrintStatusTransactionInner] [optional]

Example

from shipping.models.job_status import JobStatus

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

# convert the object into a dict
job_status_dict = job_status_instance.to_dict()
# create an instance of JobStatus from a dict
job_status_from_dict = JobStatus.from_dict(job_status_dict)

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