Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.3 KB

File metadata and controls

34 lines (25 loc) · 1.3 KB

TelegramLoginChallenge

Base login challenge for Identification stage

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-source-telegram']
response_errors Dict[str, List[ErrorDetail]] [optional]
bot_username str Telegram bot username
request_message_access bool

Example

from authentik_client.models.telegram_login_challenge import TelegramLoginChallenge

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

# convert the object into a dict
telegram_login_challenge_dict = telegram_login_challenge_instance.to_dict()
# create an instance of TelegramLoginChallenge from a dict
telegram_login_challenge_from_dict = TelegramLoginChallenge.from_dict(telegram_login_challenge_dict)

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