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