Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.31 KB

File metadata and controls

39 lines (32 loc) · 1.31 KB

StatusInfo

StatusInfo

Properties

Name Type Description Notes
created datetime [optional]
exception Exception [optional]
finished datetime [optional]
job_id str
links List[Link] [optional]
message str [optional]
process_id str [optional]
progress int [optional]
started datetime [optional]
status StatusCode
type str
updated datetime [optional]

Example

from unity_sps_ogc_processes_api_python_client.models.status_info import StatusInfo

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

# convert the object into a dict
status_info_dict = status_info_instance.to_dict()
# create an instance of StatusInfo from a dict
status_info_from_dict = StatusInfo.from_dict(status_info_dict)

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