SMS Challenge response, device is set by get_response_instance
| Name | Type | Description | Notes |
|---|---|---|---|
| component | str | [optional] [default to 'ak-stage-authenticator-sms'] | |
| code | str | [optional] | |
| phone_number | str | [optional] |
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)