| 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] |
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)