Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

InternalTaskFailedDetails

Properties

Name Type Description Notes
detail_type str The type of detail for discriminator purposes.
error_message str The error message describing the failure.
retry_count int Number of times the task has been retried. [optional]
original_event Event

Example

from flightctl.models.internal_task_failed_details import InternalTaskFailedDetails

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

# convert the object into a dict
internal_task_failed_details_dict = internal_task_failed_details_instance.to_dict()
# create an instance of InternalTaskFailedDetails from a dict
internal_task_failed_details_from_dict = InternalTaskFailedDetails.from_dict(internal_task_failed_details_dict)

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