Specifies link relations (see Web Linking) available using the JSON Hypertext Application Language specification. This object is used for dynamic discovery of resources related to the App User.
| Name | Type | Description | Notes |
|---|---|---|---|
| app | HrefObjectAppLink | [optional] | |
| user | HrefObjectUserLink | [optional] |
from okta.models.links_app_and_user import LinksAppAndUser
# TODO update the JSON string below
json = "{}"
# create an instance of LinksAppAndUser from a JSON string
links_app_and_user_instance = LinksAppAndUser.from_json(json)
# print the JSON string representation of the object
print(LinksAppAndUser.to_json())
# convert the object into a dict
links_app_and_user_dict = links_app_and_user_instance.to_dict()
# create an instance of LinksAppAndUser from a dict
links_app_and_user_from_dict = LinksAppAndUser.from_dict(links_app_and_user_dict)