/** * 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'; /** * DummyStage Serializer * @export * @interface DummyStage */ export interface DummyStage { /** * * @type {string} * @memberof DummyStage */ readonly pk: string; /** * * @type {string} * @memberof DummyStage */ name: string; /** * Get object type so that we know how to edit the object * @type {string} * @memberof DummyStage */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof DummyStage */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof DummyStage */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof DummyStage */ readonly metaModelName: string; /** * * @type {Array} * @memberof DummyStage */ flowSet?: Array; /** * * @type {boolean} * @memberof DummyStage */ throwError?: boolean; } /** * Check if a given object implements the DummyStage interface. */ export declare function instanceOfDummyStage(value: object): value is DummyStage; export declare function DummyStageFromJSON(json: any): DummyStage; export declare function DummyStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DummyStage; export declare function DummyStageToJSON(json: any): DummyStage; export declare function DummyStageToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=DummyStage.d.ts.map