| Name |
Type |
Description |
Notes |
| instance_id |
int |
|
[optional] |
| message |
str |
|
[optional] |
| object |
str |
|
[optional] |
| org_id |
int |
|
[optional] |
| reason |
str |
|
[optional] |
| time |
datetime |
|
[optional] |
| type |
str |
|
[optional] |
| user_id |
int |
|
[optional] |
from hyperstack.models.instance_events_fields import InstanceEventsFields
# TODO update the JSON string below
json = "{}"
# create an instance of InstanceEventsFields from a JSON string
instance_events_fields_instance = InstanceEventsFields.from_json(json)
# print the JSON string representation of the object
print(InstanceEventsFields.to_json())
# convert the object into a dict
instance_events_fields_dict = instance_events_fields_instance.to_dict()
# create an instance of InstanceEventsFields from a dict
instance_events_fields_from_dict = InstanceEventsFields.from_dict(instance_events_fields_dict)
[Back to Model list] [Back to API list] [Back to README]