Discoverable resources related to the subscription
| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObject | [optional] |
from okta.models.subscription_links import SubscriptionLinks
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriptionLinks from a JSON string
subscription_links_instance = SubscriptionLinks.from_json(json)
# print the JSON string representation of the object
print(SubscriptionLinks.to_json())
# convert the object into a dict
subscription_links_dict = subscription_links_instance.to_dict()
# create an instance of SubscriptionLinks from a dict
subscription_links_from_dict = SubscriptionLinks.from_dict(subscription_links_dict)