/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ProviderEnum } from './ProviderEnum'; import type { FlowSetRequest } from './FlowSetRequest'; import type { AuthTypeEnum } from './AuthTypeEnum'; /** * AuthenticatorSMSStage Serializer * @export * @interface AuthenticatorSMSStageRequest */ export interface AuthenticatorSMSStageRequest { /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorSMSStageRequest */ flowSet?: Array; /** * Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. * @type {string} * @memberof AuthenticatorSMSStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ friendlyName?: string | null; /** * * @type {ProviderEnum} * @memberof AuthenticatorSMSStageRequest */ provider: ProviderEnum; /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ fromNumber: string; /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ accountSid: string; /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ auth: string; /** * * @type {string} * @memberof AuthenticatorSMSStageRequest */ authPassword?: string; /** * * @type {AuthTypeEnum} * @memberof AuthenticatorSMSStageRequest */ authType?: AuthTypeEnum; /** * 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. * @type {boolean} * @memberof AuthenticatorSMSStageRequest */ verifyOnly?: boolean; /** * Optionally modify the payload being sent to custom providers. * @type {string} * @memberof AuthenticatorSMSStageRequest */ mapping?: string | null; } /** * Check if a given object implements the AuthenticatorSMSStageRequest interface. */ export declare function instanceOfAuthenticatorSMSStageRequest(value: object): value is AuthenticatorSMSStageRequest; export declare function AuthenticatorSMSStageRequestFromJSON(json: any): AuthenticatorSMSStageRequest; export declare function AuthenticatorSMSStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorSMSStageRequest; export declare function AuthenticatorSMSStageRequestToJSON(json: any): AuthenticatorSMSStageRequest; export declare function AuthenticatorSMSStageRequestToJSONTyped(value?: AuthenticatorSMSStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorSMSStageRequest.d.ts.map