Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.4 KB

File metadata and controls

32 lines (23 loc) · 1.4 KB

AuthenticatorSMSChallengeResponseRequest

SMS Challenge response, device is set by get_response_instance

Properties

Name Type Description Notes
component str [optional] [default to 'ak-stage-authenticator-sms']
code str [optional]
phone_number str [optional]

Example

from authentik_client.models.authenticator_sms_challenge_response_request import AuthenticatorSMSChallengeResponseRequest

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

# convert the object into a dict
authenticator_sms_challenge_response_request_dict = authenticator_sms_challenge_response_request_instance.to_dict()
# create an instance of AuthenticatorSMSChallengeResponseRequest from a dict
authenticator_sms_challenge_response_request_from_dict = AuthenticatorSMSChallengeResponseRequest.from_dict(authenticator_sms_challenge_response_request_dict)

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