Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

InstanceEvents.md

File metadata and controls

31 lines (22 loc) · 1 KB

InstanceEvents

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
instance_events List[InstanceEventsFields] [optional]

Example

from hyperstack.models.instance_events import InstanceEvents

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

# convert the object into a dict
instance_events_dict = instance_events_instance.to_dict()
# create an instance of InstanceEvents from a dict
instance_events_form_dict = instance_events.from_dict(instance_events_dict)

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