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