| 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 |
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)