Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1008 Bytes

File metadata and controls

31 lines (22 loc) · 1008 Bytes

ClusterEvents

Properties

Name Type Description Notes
cluster_events List[ClusterEventsFields] [optional]
message str [optional]
status bool [optional]

Example

from hyperstack.models.cluster_events import ClusterEvents

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

# convert the object into a dict
cluster_events_dict = cluster_events_instance.to_dict()
# create an instance of ClusterEvents from a dict
cluster_events_from_dict = ClusterEvents.from_dict(cluster_events_dict)

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