| Name | Type | Description | Notes |
|---|---|---|---|
| links | ApplicationLayoutsLinks | [optional] |
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)