Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.3 KB

File metadata and controls

32 lines (23 loc) · 1.3 KB

ApplicationCredentialsUsernameTemplate

Properties

Name Type Description Notes
push_status str [optional]
template str [optional]
type str [optional]
user_suffix str [optional]

Example

from okta.models.application_credentials_username_template import ApplicationCredentialsUsernameTemplate

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

# convert the object into a dict
application_credentials_username_template_dict = application_credentials_username_template_instance.to_dict()
# create an instance of ApplicationCredentialsUsernameTemplate from a dict
application_credentials_username_template_from_dict = ApplicationCredentialsUsernameTemplate.from_dict(application_credentials_username_template_dict)

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