Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

AppUserCredentials

Specifies a user's credentials for the app. The authentication scheme of the app determines whether a username or password can be assigned to a user.

Properties

Name Type Description Notes
password AppUserPasswordCredential [optional]
user_name str Username for the app [optional]

Example

from okta.models.app_user_credentials import AppUserCredentials

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

# convert the object into a dict
app_user_credentials_dict = app_user_credentials_instance.to_dict()
# create an instance of AppUserCredentials from a dict
app_user_credentials_from_dict = AppUserCredentials.from_dict(app_user_credentials_dict)

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