/** * 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 { Pagination } from './Pagination'; import type { Prompt } from './Prompt'; /** * * @export * @interface PaginatedPromptList */ export interface PaginatedPromptList { /** * * @type {Pagination} * @memberof PaginatedPromptList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedPromptList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedPromptList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedPromptList interface. */ export declare function instanceOfPaginatedPromptList(value: object): value is PaginatedPromptList; export declare function PaginatedPromptListFromJSON(json: any): PaginatedPromptList; export declare function PaginatedPromptListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPromptList; export declare function PaginatedPromptListToJSON(json: any): PaginatedPromptList; export declare function PaginatedPromptListToJSONTyped(value?: PaginatedPromptList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedPromptList.d.ts.map