Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.32 KB

File metadata and controls

31 lines (22 loc) · 1.32 KB

SecurePasswordStoreApplication

Properties

Name Type Description Notes
credentials SchemeApplicationCredentials [optional]
name str [optional] [default to 'template_sps']
settings SecurePasswordStoreApplicationSettings [optional]

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]