Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 990 Bytes

File metadata and controls

32 lines (23 loc) · 990 Bytes

PodDetails

Properties

Name Type Description Notes
name str [optional]
revision_number int [optional]
status PodStatus
error_message str [optional]

Example

from platform_api_python_client.models.pod_details import PodDetails

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

# convert the object into a dict
pod_details_dict = pod_details_instance.to_dict()
# create an instance of PodDetails from a dict
pod_details_from_dict = PodDetails.from_dict(pod_details_dict)

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