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