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