/** * 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'; /** * AuthenticatorEndpointGDTCStage Serializer * @export * @interface AuthenticatorEndpointGDTCStage */ export interface AuthenticatorEndpointGDTCStage { /** * * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ readonly pk: string; /** * * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof AuthenticatorEndpointGDTCStage */ 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 AuthenticatorEndpointGDTCStage */ configureFlow?: string | null; /** * * @type {string} * @memberof AuthenticatorEndpointGDTCStage */ friendlyName?: string | null; /** * * @type {{ [key: string]: any; }} * @memberof AuthenticatorEndpointGDTCStage */ credentials: { [key: string]: any; }; } /** * Check if a given object implements the AuthenticatorEndpointGDTCStage interface. */ export declare function instanceOfAuthenticatorEndpointGDTCStage(value: object): value is AuthenticatorEndpointGDTCStage; export declare function AuthenticatorEndpointGDTCStageFromJSON(json: any): AuthenticatorEndpointGDTCStage; export declare function AuthenticatorEndpointGDTCStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthenticatorEndpointGDTCStage; export declare function AuthenticatorEndpointGDTCStageToJSON(json: any): AuthenticatorEndpointGDTCStage; export declare function AuthenticatorEndpointGDTCStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AuthenticatorEndpointGDTCStage.d.ts.map