Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

ClusterNodesListResponse

Properties

Name Type Description Notes
message str [optional]
nodes List[ClusterNodeFields] [optional]
status bool [optional]

Example

from hyperstack.models.cluster_nodes_list_response import ClusterNodesListResponse

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

# convert the object into a dict
cluster_nodes_list_response_dict = cluster_nodes_list_response_instance.to_dict()
# create an instance of ClusterNodesListResponse from a dict
cluster_nodes_list_response_from_dict = ClusterNodesListResponse.from_dict(cluster_nodes_list_response_dict)

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