/** * 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'; /** * AuthenticatorDuoStage Serializer * @export * @interface AuthenticatorDuoStage */ export interface AuthenticatorDuoStage { /** * * @type {string} * @memberof AuthenticatorDuoStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorDuoStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorDuoStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorDuoStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorDuoStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorDuoStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorDuoStage */ 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 AuthenticatorDuoStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorDuoStage */ friendlyName?: string | null; /** * * @type {string} * @memberof AuthenticatorDuoStage */ clientId: string; /** * * @type {string} * @memberof AuthenticatorDuoStage */ apiHostname: string; /** * * @type {string} * @memberof AuthenticatorDuoStage */ adminIntegrationKey?: string; } /** * Check if a given object implements the AuthenticatorDuoStage interface. */ export declare function instanceOfAuthenticatorDuoStage(value: object): value is AuthenticatorDuoStage; export declare function AuthenticatorDuoStageFromJSON(json: any): AuthenticatorDuoStage; export declare function AuthenticatorDuoStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorDuoStage; export declare function AuthenticatorDuoStageToJSON(json: any): AuthenticatorDuoStage; export declare function AuthenticatorDuoStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorDuoStage.d.ts.map