Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

File metadata and controls

31 lines (22 loc) · 1.29 KB

LinksAppAndUser

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.

Properties

Name Type Description Notes
app HrefObjectAppLink [optional]
user HrefObjectUserLink [optional]

Example

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)

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