| Name | Type | Description | Notes |
|---|---|---|---|
| general | List[HrefObject] | [optional] | |
| sign_on | List[HrefObject] | [optional] | |
| provisioning | List[HrefObject] | [optional] |
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)