/** * 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 { ErrorDetail } from './ErrorDetail'; import type { ContextualFlowInfo } from './ContextualFlowInfo'; /** * SMS Setup challenge * @export * @interface AuthenticatorSMSChallenge */ export interface AuthenticatorSMSChallenge { /** * * @type {ContextualFlowInfo} * @memberof AuthenticatorSMSChallenge */ flowInfo?: ContextualFlowInfo; /** * * @type {string} * @memberof AuthenticatorSMSChallenge */ component?: string; /** * * @type {{ [key: string]: Array; }} * @memberof AuthenticatorSMSChallenge */ responseErrors?: { [key: string]: Array; }; /** * * @type {string} * @memberof AuthenticatorSMSChallenge */ pendingUser: string; /** * * @type {string} * @memberof AuthenticatorSMSChallenge */ pendingUserAvatar: string; /** * * @type {boolean} * @memberof AuthenticatorSMSChallenge */ phoneNumberRequired?: boolean; } /** * Check if a given object implements the AuthenticatorSMSChallenge interface. */ export declare function instanceOfAuthenticatorSMSChallenge(value: object): value is AuthenticatorSMSChallenge; export declare function AuthenticatorSMSChallengeFromJSON(json: any): AuthenticatorSMSChallenge; export declare function AuthenticatorSMSChallengeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorSMSChallenge; export declare function AuthenticatorSMSChallengeToJSON(json: any): AuthenticatorSMSChallenge; export declare function AuthenticatorSMSChallengeToJSONTyped(value?: AuthenticatorSMSChallenge | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorSMSChallenge.d.ts.map