| Name | Type | Description | Notes |
|---|---|---|---|
| cluster_events | List[ClusterEventsFields] | [optional] | |
| message | str | [optional] | |
| status | bool | [optional] |
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)