/** * 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 { FlowSet } from './FlowSet'; import type { ProviderEnum } from './ProviderEnum'; import type { AuthTypeEnum } from './AuthTypeEnum'; /** * AuthenticatorSMSStage Serializer * @export * @interface AuthenticatorSMSStage */ export interface AuthenticatorSMSStage { /** * * @type {string} * @memberof AuthenticatorSMSStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorSMSStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorSMSStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorSMSStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorSMSStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorSMSStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorSMSStage */ 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 AuthenticatorSMSStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorSMSStage */ friendlyName?: string | null; /** * * @type {ProviderEnum} * @memberof AuthenticatorSMSStage */ provider: ProviderEnum; /** * * @type {string} * @memberof AuthenticatorSMSStage */ fromNumber: string; /** * * @type {string} * @memberof AuthenticatorSMSStage */ accountSid: string; /** * * @type {string} * @memberof AuthenticatorSMSStage */ auth: string; /** * * @type {string} * @memberof AuthenticatorSMSStage */ authPassword?: string; /** * * @type {AuthTypeEnum} * @memberof AuthenticatorSMSStage */ 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 AuthenticatorSMSStage */ verifyOnly?: boolean; /** * Optionally modify the payload being sent to custom providers. * @type {string} * @memberof AuthenticatorSMSStage */ mapping?: string | null; } /** * Check if a given object implements the AuthenticatorSMSStage interface. */ export declare function instanceOfAuthenticatorSMSStage(value: object): value is AuthenticatorSMSStage; export declare function AuthenticatorSMSStageFromJSON(json: any): AuthenticatorSMSStage; export declare function AuthenticatorSMSStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorSMSStage; export declare function AuthenticatorSMSStageToJSON(json: any): AuthenticatorSMSStage; export declare function AuthenticatorSMSStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorSMSStage.d.ts.map