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