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