/** * 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 { StageRequest } from './StageRequest'; import type { PromptTypeEnum } from './PromptTypeEnum'; /** * Prompt Serializer * @export * @interface PatchedPromptRequest */ export interface PatchedPromptRequest { /** * * @type {string} * @memberof PatchedPromptRequest */ name?: string; /** * Name of the form field, also used to store the value * @type {string} * @memberof PatchedPromptRequest */ fieldKey?: string; /** * * @type {string} * @memberof PatchedPromptRequest */ label?: string; /** * * @type {PromptTypeEnum} * @memberof PatchedPromptRequest */ type?: PromptTypeEnum; /** * * @type {boolean} * @memberof PatchedPromptRequest */ 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 PatchedPromptRequest */ 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 PatchedPromptRequest */ initialValue?: string; /** * * @type {number} * @memberof PatchedPromptRequest */ order?: number; /** * * @type {Array} * @memberof PatchedPromptRequest */ promptstageSet?: Array; /** * * @type {string} * @memberof PatchedPromptRequest */ subText?: string; /** * * @type {boolean} * @memberof PatchedPromptRequest */ placeholderExpression?: boolean; /** * * @type {boolean} * @memberof PatchedPromptRequest */ initialValueExpression?: boolean; } /** * Check if a given object implements the PatchedPromptRequest interface. */ export declare function instanceOfPatchedPromptRequest(value: object): value is PatchedPromptRequest; export declare function PatchedPromptRequestFromJSON(json: any): PatchedPromptRequest; export declare function PatchedPromptRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedPromptRequest; export declare function PatchedPromptRequestToJSON(json: any): PatchedPromptRequest; export declare function PatchedPromptRequestToJSONTyped(value?: PatchedPromptRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedPromptRequest.d.ts.map