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