Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

BasicAuthApplication

Properties

Name Type Description Notes
credentials SchemeApplicationCredentials [optional]
name str [optional] [default to 'template_basic_auth']
settings BasicApplicationSettings [optional]

Example

from okta.models.basic_auth_application import BasicAuthApplication

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

# convert the object into a dict
basic_auth_application_dict = basic_auth_application_instance.to_dict()
# create an instance of BasicAuthApplication from a dict
basic_auth_application_from_dict = BasicAuthApplication.from_dict(basic_auth_application_dict)

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