974 B
974 B
JobStatusDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| job_counts | JobCountsDto | ||
| queue_status | QueueStatusDto |
Example
from generated.immich.openapi_client.models.job_status_dto import JobStatusDto
# TODO update the JSON string below
json = "{}"
# create an instance of JobStatusDto from a JSON string
job_status_dto_instance = JobStatusDto.from_json(json)
# print the JSON string representation of the object
print(JobStatusDto.to_json())
# convert the object into a dict
job_status_dto_dict = job_status_dto_instance.to_dict()
# create an instance of JobStatusDto from a dict
job_status_dto_from_dict = JobStatusDto.from_dict(job_status_dto_dict)