Challenge info for consent screens
| Name | Type | Description | Notes |
|---|---|---|---|
| flow_info | ContextualFlowInfo | [optional] | |
| component | str | [optional] [default to 'ak-stage-consent'] | |
| response_errors | Dict[str, List[ErrorDetail]] | [optional] | |
| pending_user | str | ||
| pending_user_avatar | str | ||
| header_text | str | [optional] | |
| permissions | List[ConsentPermission] | ||
| additional_permissions | List[ConsentPermission] | ||
| token | str |
from authentik_client.models.consent_challenge import ConsentChallenge
# TODO update the JSON string below
json = "{}"
# create an instance of ConsentChallenge from a JSON string
consent_challenge_instance = ConsentChallenge.from_json(json)
# print the JSON string representation of the object
print(ConsentChallenge.to_json())
# convert the object into a dict
consent_challenge_dict = consent_challenge_instance.to_dict()
# create an instance of ConsentChallenge from a dict
consent_challenge_from_dict = ConsentChallenge.from_dict(consent_challenge_dict)