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