Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.24 KB

File metadata and controls

32 lines (23 loc) · 1.24 KB

OAuthDeviceCodeChallenge

OAuth Device code challenge

Properties

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]

Example

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)

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