Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.16 KB

File metadata and controls

34 lines (25 loc) · 1.16 KB

ApplicationLayout

Properties

Name Type Description Notes
elements List[Dict[str, object]] [optional]
label str [optional]
options Dict[str, object] [optional]
rule ApplicationLayoutRule [optional]
scope str [optional]
type str [optional]

Example

from okta.models.application_layout import ApplicationLayout

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

# convert the object into a dict
application_layout_dict = application_layout_instance.to_dict()
# create an instance of ApplicationLayout from a dict
application_layout_from_dict = ApplicationLayout.from_dict(application_layout_dict)

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