Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 903 Bytes

DefaultHomePage.md

File metadata and controls

29 lines (20 loc) · 903 Bytes

DefaultHomePage

Properties

Name Type Description Notes
route str [optional]

Example

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)

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