Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1009 Bytes

File metadata and controls

31 lines (22 loc) · 1009 Bytes

ClusterResponse

Properties

Name Type Description Notes
cluster ClusterFields [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.cluster_response import ClusterResponse

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

# convert the object into a dict
cluster_response_dict = cluster_response_instance.to_dict()
# create an instance of ClusterResponse from a dict
cluster_response_from_dict = ClusterResponse.from_dict(cluster_response_dict)

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