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