Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

OAuthDeviceCodeChallengeResponseRequest

Response that includes the user-entered device code

Properties

Name Type Description Notes
component str [optional] [default to 'ak-provider-oauth2-device-code']
code str

Example

from authentik_client.models.o_auth_device_code_challenge_response_request import OAuthDeviceCodeChallengeResponseRequest

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

# convert the object into a dict
o_auth_device_code_challenge_response_request_dict = o_auth_device_code_challenge_response_request_instance.to_dict()
# create an instance of OAuthDeviceCodeChallengeResponseRequest from a dict
o_auth_device_code_challenge_response_request_from_dict = OAuthDeviceCodeChallengeResponseRequest.from_dict(o_auth_device_code_challenge_response_request_dict)

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