Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

ApplicationLayouts

Properties

Name Type Description Notes
links ApplicationLayoutsLinks [optional]

Example

from okta.models.application_layouts import ApplicationLayouts

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

# convert the object into a dict
application_layouts_dict = application_layouts_instance.to_dict()
# create an instance of ApplicationLayouts from a dict
application_layouts_from_dict = ApplicationLayouts.from_dict(application_layouts_dict)

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