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