Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

AutoLoginApplication

Properties

Name Type Description Notes
credentials SchemeApplicationCredentials [optional]
name str [optional]
settings AutoLoginApplicationSettings [optional]

Example

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)

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