Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.2 KB

File metadata and controls

34 lines (25 loc) · 1.2 KB

UserLoginChallenge

Empty challenge

Properties

Name Type Description Notes
flow_info ContextualFlowInfo [optional]
component str [optional] [default to 'ak-stage-user-login']
response_errors Dict[str, List[ErrorDetail]] [optional]
pending_user str
pending_user_avatar str

Example

from authentik_client.models.user_login_challenge import UserLoginChallenge

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

# convert the object into a dict
user_login_challenge_dict = user_login_challenge_instance.to_dict()
# create an instance of UserLoginChallenge from a dict
user_login_challenge_from_dict = UserLoginChallenge.from_dict(user_login_challenge_dict)

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