| 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] |
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)