| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | ApplicationCredentials | [optional] | |
| name | str | [optional] [default to 'bookmark'] | |
| settings | BookmarkApplicationSettings | [optional] |
from okta.models.bookmark_application import BookmarkApplication
# TODO update the JSON string below
json = "{}"
# create an instance of BookmarkApplication from a JSON string
bookmark_application_instance = BookmarkApplication.from_json(json)
# print the JSON string representation of the object
print(BookmarkApplication.to_json())
# convert the object into a dict
bookmark_application_dict = bookmark_application_instance.to_dict()
# create an instance of BookmarkApplication from a dict
bookmark_application_from_dict = BookmarkApplication.from_dict(bookmark_application_dict)