Special challenge for apple-native authentication flow, which happens on the client.
| Name | Type | Description | Notes |
|---|---|---|---|
| flow_info | ContextualFlowInfo | [optional] | |
| component | str | [optional] [default to 'ak-source-oauth-apple'] | |
| response_errors | Dict[str, List[ErrorDetail]] | [optional] | |
| client_id | str | ||
| scope | str | ||
| redirect_uri | str | ||
| state | str |
from authentik_client.models.apple_login_challenge import AppleLoginChallenge
# TODO update the JSON string below
json = "{}"
# create an instance of AppleLoginChallenge from a JSON string
apple_login_challenge_instance = AppleLoginChallenge.from_json(json)
# print the JSON string representation of the object
print(AppleLoginChallenge.to_json())
# convert the object into a dict
apple_login_challenge_dict = apple_login_challenge_instance.to_dict()
# create an instance of AppleLoginChallenge from a dict
apple_login_challenge_from_dict = AppleLoginChallenge.from_dict(apple_login_challenge_dict)