Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.39 KB

File metadata and controls

31 lines (22 loc) · 1.39 KB

SecurePasswordStoreApplication

Properties

Name Type Description Notes
credentials SchemeApplicationCredentials [optional]
name str `template_sps` is the key name for a SWA app instance that uses HTTP POST and doesn't require a browser plugin
settings SecurePasswordStoreApplicationSettings

Example

from okta.models.secure_password_store_application import SecurePasswordStoreApplication

# TODO update the JSON string below
json = "{}"
# create an instance of SecurePasswordStoreApplication from a JSON string
secure_password_store_application_instance = SecurePasswordStoreApplication.from_json(json)
# print the JSON string representation of the object
print(SecurePasswordStoreApplication.to_json())

# convert the object into a dict
secure_password_store_application_dict = secure_password_store_application_instance.to_dict()
# create an instance of SecurePasswordStoreApplication from a dict
secure_password_store_application_from_dict = SecurePasswordStoreApplication.from_dict(secure_password_store_application_dict)

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