/** * 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 { UserLogoutStage } from './UserLogoutStage'; /** * * @export * @interface PaginatedUserLogoutStageList */ export interface PaginatedUserLogoutStageList { /** * * @type {Pagination} * @memberof PaginatedUserLogoutStageList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedUserLogoutStageList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedUserLogoutStageList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedUserLogoutStageList interface. */ export declare function instanceOfPaginatedUserLogoutStageList(value: object): value is PaginatedUserLogoutStageList; export declare function PaginatedUserLogoutStageListFromJSON(json: any): PaginatedUserLogoutStageList; export declare function PaginatedUserLogoutStageListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserLogoutStageList; export declare function PaginatedUserLogoutStageListToJSON(json: any): PaginatedUserLogoutStageList; export declare function PaginatedUserLogoutStageListToJSONTyped(value?: PaginatedUserLogoutStageList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedUserLogoutStageList.d.ts.map