/** * 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'; /** * AuthenticatorEndpointGDTCStage Serializer * @export * @interface AuthenticatorEndpointGDTCStageRequest */ export interface AuthenticatorEndpointGDTCStageRequest { /** * * @type {string} * @memberof AuthenticatorEndpointGDTCStageRequest */ name: string; /** * * @type {Array} * @memberof AuthenticatorEndpointGDTCStageRequest */ 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 AuthenticatorEndpointGDTCStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorEndpointGDTCStageRequest */ friendlyName?: string | null; /** * * @type {{ [key: string]: any; }} * @memberof AuthenticatorEndpointGDTCStageRequest */ credentials: { [key: string]: any; }; } /** * Check if a given object implements the AuthenticatorEndpointGDTCStageRequest interface. */ export declare function instanceOfAuthenticatorEndpointGDTCStageRequest(value: object): value is AuthenticatorEndpointGDTCStageRequest; export declare function AuthenticatorEndpointGDTCStageRequestFromJSON(json: any): AuthenticatorEndpointGDTCStageRequest; export declare function AuthenticatorEndpointGDTCStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEndpointGDTCStageRequest; export declare function AuthenticatorEndpointGDTCStageRequestToJSON(json: any): AuthenticatorEndpointGDTCStageRequest; export declare function AuthenticatorEndpointGDTCStageRequestToJSONTyped(value?: AuthenticatorEndpointGDTCStageRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEndpointGDTCStageRequest.d.ts.map