| Name | Type | Description | Notes |
|---|---|---|---|
| credentials | SchemeApplicationCredentials | [optional] | |
| name | str | [optional] | |
| settings | AutoLoginApplicationSettings | [optional] |
from okta.models.auto_login_application import AutoLoginApplication
# TODO update the JSON string below
json = "{}"
# create an instance of AutoLoginApplication from a JSON string
auto_login_application_instance = AutoLoginApplication.from_json(json)
# print the JSON string representation of the object
print(AutoLoginApplication.to_json())
# convert the object into a dict
auto_login_application_dict = auto_login_application_instance.to_dict()
# create an instance of AutoLoginApplication from a dict
auto_login_application_from_dict = AutoLoginApplication.from_dict(auto_login_application_dict)