Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.42 KB

File metadata and controls

30 lines (21 loc) · 1.42 KB

OAuthDeviceCodeFinishChallengeResponseRequest

Response that device has been authenticated and tab can be closed

Properties

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

Example

from authentik_client.models.o_auth_device_code_finish_challenge_response_request import OAuthDeviceCodeFinishChallengeResponseRequest

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

# convert the object into a dict
o_auth_device_code_finish_challenge_response_request_dict = o_auth_device_code_finish_challenge_response_request_instance.to_dict()
# create an instance of OAuthDeviceCodeFinishChallengeResponseRequest from a dict
o_auth_device_code_finish_challenge_response_request_from_dict = OAuthDeviceCodeFinishChallengeResponseRequest.from_dict(o_auth_device_code_finish_challenge_response_request_dict)

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