| Name | Type | Description | Notes |
|---|---|---|---|
| signing | ApplicationCredentialsSigning | [optional] | |
| user_name_template | ApplicationCredentialsUsernameTemplate | [optional] | |
| password | PasswordCredential | [optional] | |
| reveal_password | bool | [optional] | |
| scheme | ApplicationCredentialsScheme | [optional] | |
| user_name | str | [optional] |
from okta.models.scheme_application_credentials import SchemeApplicationCredentials
# TODO update the JSON string below
json = "{}"
# create an instance of SchemeApplicationCredentials from a JSON string
scheme_application_credentials_instance = SchemeApplicationCredentials.from_json(json)
# print the JSON string representation of the object
print(SchemeApplicationCredentials.to_json())
# convert the object into a dict
scheme_application_credentials_dict = scheme_application_credentials_instance.to_dict()
# create an instance of SchemeApplicationCredentials from a dict
scheme_application_credentials_from_dict = SchemeApplicationCredentials.from_dict(scheme_application_credentials_dict)