Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1020 Bytes

File metadata and controls

30 lines (21 loc) · 1020 Bytes

EventSubscriptions

Properties

Name Type Description Notes
items List[str] [optional]
type EventSubscriptionType [optional]

Example

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)

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