| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | SchemeApplicationCredentials | [optional] | |
| name | str | [optional] [default to 'template_basic_auth'] | |
| settings | BasicApplicationSettings | [optional] |
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)