Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

GetDurableExecutionStatus200ResponseError

Present when status is failed

Properties

Name Type Description Notes
error_message str [optional]
error_type str [optional]

Example

from quantcdn.models.get_durable_execution_status200_response_error import GetDurableExecutionStatus200ResponseError

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

# convert the object into a dict
get_durable_execution_status200_response_error_dict = get_durable_execution_status200_response_error_instance.to_dict()
# create an instance of GetDurableExecutionStatus200ResponseError from a dict
get_durable_execution_status200_response_error_from_dict = GetDurableExecutionStatus200ResponseError.from_dict(get_durable_execution_status200_response_error_dict)

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