Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

BookmarkApplication

Properties

Name Type Description Notes
credentials ApplicationCredentials [optional]
name str [optional] [default to 'bookmark']
settings BookmarkApplicationSettings [optional]

Example

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)

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