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