Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

GetJobStatus401Response.md

File metadata and controls

34 lines (25 loc) · 1.2 KB

GetJobStatus401Response

Properties

Name Type Description Notes
type str [optional]
title str [optional]
status int [optional]
detail str [optional]
instance str [optional]
errors Dict[str, List[str]] [optional]

Example

from openapi_client.models.get_job_status401_response import GetJobStatus401Response

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

# convert the object into a dict
get_job_status401_response_dict = get_job_status401_response_instance.to_dict()
# create an instance of GetJobStatus401Response from a dict
get_job_status401_response_from_dict = GetJobStatus401Response.from_dict(get_job_status401_response_dict)

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