| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[str] | [optional] | |
| type | EventSubscriptionType | [optional] |
from okta.models.event_subscriptions import EventSubscriptions
# TODO update the JSON string below
json = "{}"
# create an instance of EventSubscriptions from a JSON string
event_subscriptions_instance = EventSubscriptions.from_json(json)
# print the JSON string representation of the object
print(EventSubscriptions.to_json())
# convert the object into a dict
event_subscriptions_dict = event_subscriptions_instance.to_dict()
# create an instance of EventSubscriptions from a dict
event_subscriptions_from_dict = EventSubscriptions.from_dict(event_subscriptions_dict)