Specifies link relations (see Web Linking) available for the current status of an application using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of related resources and lifecycle operations.
| Name | Type | Description | Notes |
|---|---|---|---|
| var_self | HrefObjectSelfLink | [optional] |
from okta.models.links_self import LinksSelf
# TODO update the JSON string below
json = "{}"
# create an instance of LinksSelf from a JSON string
links_self_instance = LinksSelf.from_json(json)
# print the JSON string representation of the object
print(LinksSelf.to_json())
# convert the object into a dict
links_self_dict = links_self_instance.to_dict()
# create an instance of LinksSelf from a dict
links_self_from_dict = LinksSelf.from_dict(links_self_dict)