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