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