| Name |
Type |
Description |
Notes |
| flow_info |
ContextualFlowInfo |
|
[optional] |
| component |
str |
|
[optional] [default to 'ak-source-telegram'] |
| response_errors |
Dict[str, List[ErrorDetail]] |
|
[optional] |
| to |
str |
|
|
| client_id |
str |
|
|
| scope |
str |
|
|
| redirect_uri |
str |
|
|
| state |
str |
|
|
| slug |
str |
|
|
| bot_username |
str |
Telegram bot username |
|
| request_message_access |
bool |
|
|
from authentik_client.models.login_challenge_types import LoginChallengeTypes
# TODO update the JSON string below
json = "{}"
# create an instance of LoginChallengeTypes from a JSON string
login_challenge_types_instance = LoginChallengeTypes.from_json(json)
# print the JSON string representation of the object
print(LoginChallengeTypes.to_json())
# convert the object into a dict
login_challenge_types_dict = login_challenge_types_instance.to_dict()
# create an instance of LoginChallengeTypes from a dict
login_challenge_types_from_dict = LoginChallengeTypes.from_dict(login_challenge_types_dict)
[Back to Model list] [Back to API list] [Back to README]