AuthenticatorSMSStage Serializer
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| configure_flow | UUID | Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. | [optional] |
| friendly_name | str | [optional] | |
| provider | ProviderEnum | ||
| from_number | str | ||
| account_sid | str | ||
| auth | str | ||
| auth_password | str | [optional] | |
| auth_type | AuthTypeEnum | [optional] | |
| verify_only | bool | When enabled, the Phone number is only used during enrollment to verify the users authenticity. Only a hash of the phone number is saved to ensure it is not reused in the future. | [optional] |
| mapping | UUID | Optionally modify the payload being sent to custom providers. | [optional] |
from authentik_client.models.authenticator_sms_stage_request import AuthenticatorSMSStageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of AuthenticatorSMSStageRequest from a JSON string
authenticator_sms_stage_request_instance = AuthenticatorSMSStageRequest.from_json(json)
# print the JSON string representation of the object
print(AuthenticatorSMSStageRequest.to_json())
# convert the object into a dict
authenticator_sms_stage_request_dict = authenticator_sms_stage_request_instance.to_dict()
# create an instance of AuthenticatorSMSStageRequest from a dict
authenticator_sms_stage_request_from_dict = AuthenticatorSMSStageRequest.from_dict(authenticator_sms_stage_request_dict)