/** * 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 { PromptTypeEnum } from './PromptTypeEnum'; import type { Stage } from './Stage'; /** * Prompt Serializer * @export * @interface Prompt */ export interface Prompt { /** * * @type {string} * @memberof Prompt */ readonly pk: string; /** * * @type {string} * @memberof Prompt */ name: string; /** * Name of the form field, also used to store the value * @type {string} * @memberof Prompt */ fieldKey: string; /** * * @type {string} * @memberof Prompt */ label: string; /** * * @type {PromptTypeEnum} * @memberof Prompt */ type: PromptTypeEnum; /** * * @type {boolean} * @memberof Prompt */ required?: boolean; /** * Optionally provide a short hint that describes the expected input value. When creating a fixed choice field, enable interpreting as expression and return a list to return multiple choices. * @type {string} * @memberof Prompt */ placeholder?: string; /** * Optionally pre-fill the input with an initial value. When creating a fixed choice field, enable interpreting as expression and return a list to return multiple default choices. * @type {string} * @memberof Prompt */ initialValue?: string; /** * * @type {number} * @memberof Prompt */ order?: number; /** * * @type {Array} * @memberof Prompt */ promptstageSet?: Array; /** * * @type {string} * @memberof Prompt */ subText?: string; /** * * @type {boolean} * @memberof Prompt */ placeholderExpression?: boolean; /** * * @type {boolean} * @memberof Prompt */ initialValueExpression?: boolean; } /** * Check if a given object implements the Prompt interface. */ export declare function instanceOfPrompt(value: object): value is Prompt; export declare function PromptFromJSON(json: any): Prompt; export declare function PromptFromJSONTyped(json: any, ignoreDiscriminator: boolean): Prompt; export declare function PromptToJSON(json: any): Prompt; export declare function PromptToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Prompt.d.ts.map