| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | SchemeApplicationCredentials | [optional] | |
| name | str | [optional] [default to 'template_sps'] | |
| settings | SecurePasswordStoreApplicationSettings | [optional] |
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)