Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

Subscription

Properties

Name Type Description Notes
channels List[str] An array of sources send notifications to users. > Note: Currently, Okta only allows `email` channels. [optional]
notification_type NotificationType [optional]
status SubscriptionStatus [optional]
links SubscriptionLinks [optional]

Example

from okta.models.subscription import Subscription

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

# convert the object into a dict
subscription_dict = subscription_instance.to_dict()
# create an instance of Subscription from a dict
subscription_from_dict = Subscription.from_dict(subscription_dict)

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