Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.03 KB

File metadata and controls

33 lines (24 loc) · 1.03 KB

LoginSource

Serializer for Login buttons of sources

Properties

Name Type Description Notes
name str
icon_url str [optional]
promoted bool [optional] [default to False]
challenge LoginChallengeTypes

Example

from authentik_client.models.login_source import LoginSource

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

# convert the object into a dict
login_source_dict = login_source_instance.to_dict()
# create an instance of LoginSource from a dict
login_source_from_dict = LoginSource.from_dict(login_source_dict)

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