OAuth Device code challenge
| Name | Type | Description | Notes |
|---|---|---|---|
| flow_info | ContextualFlowInfo | [optional] | |
| component | str | [optional] [default to 'ak-provider-oauth2-device-code'] | |
| response_errors | Dict[str, List[ErrorDetail]] | [optional] |
from authentik_client.models.o_auth_device_code_challenge import OAuthDeviceCodeChallenge
# TODO update the JSON string below
json = "{}"
# create an instance of OAuthDeviceCodeChallenge from a JSON string
o_auth_device_code_challenge_instance = OAuthDeviceCodeChallenge.from_json(json)
# print the JSON string representation of the object
print(OAuthDeviceCodeChallenge.to_json())
# convert the object into a dict
o_auth_device_code_challenge_dict = o_auth_device_code_challenge_instance.to_dict()
# create an instance of OAuthDeviceCodeChallenge from a dict
o_auth_device_code_challenge_from_dict = OAuthDeviceCodeChallenge.from_dict(o_auth_device_code_challenge_dict)