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