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