Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

ApplicationLayoutsLinks

Properties

Name Type Description Notes
general List[HrefObject] [optional]
sign_on List[HrefObject] [optional]
provisioning List[HrefObject] [optional]

Example

from okta.models.application_layouts_links import ApplicationLayoutsLinks

# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationLayoutsLinks from a JSON string
application_layouts_links_instance = ApplicationLayoutsLinks.from_json(json)
# print the JSON string representation of the object
print(ApplicationLayoutsLinks.to_json())

# convert the object into a dict
application_layouts_links_dict = application_layouts_links_instance.to_dict()
# create an instance of ApplicationLayoutsLinks from a dict
application_layouts_links_from_dict = ApplicationLayoutsLinks.from_dict(application_layouts_links_dict)

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