/** * 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 { FlowSetRequest } from './FlowSetRequest'; /** * AuthenticatorDuoStage Serializer * @export * @interface AuthenticatorDuoStageRequest */ export interface AuthenticatorDuoStageRequest { /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorDuoStageRequest */ 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 AuthenticatorDuoStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ friendlyName?: string | null; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ clientId: string; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ clientSecret: string; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ apiHostname: string; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ adminIntegrationKey?: string; /** * * @type {string} * @memberof AuthenticatorDuoStageRequest */ adminSecretKey?: string; } /** * Check if a given object implements the AuthenticatorDuoStageRequest interface. */ export declare function instanceOfAuthenticatorDuoStageRequest(value: object): value is AuthenticatorDuoStageRequest; export declare function AuthenticatorDuoStageRequestFromJSON(json: any): AuthenticatorDuoStageRequest; export declare function AuthenticatorDuoStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorDuoStageRequest; export declare function AuthenticatorDuoStageRequestToJSON(json: any): AuthenticatorDuoStageRequest; export declare function AuthenticatorDuoStageRequestToJSONTyped(value?: AuthenticatorDuoStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorDuoStageRequest.d.ts.map