Name | Type | Description | Notes |
---|---|---|---|
route | str | [optional] |
from akeyless.models.default_home_page import DefaultHomePage
# TODO update the JSON string below
json = "{}"
# create an instance of DefaultHomePage from a JSON string
default_home_page_instance = DefaultHomePage.from_json(json)
# print the JSON string representation of the object
print(DefaultHomePage.to_json())
# convert the object into a dict
default_home_page_dict = default_home_page_instance.to_dict()
# create an instance of DefaultHomePage from a dict
default_home_page_from_dict = DefaultHomePage.from_dict(default_home_page_dict)