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