/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { TelegramSourcePropertyMapping } from './TelegramSourcePropertyMapping'; /** * * @export * @interface PaginatedTelegramSourcePropertyMappingList */ export interface PaginatedTelegramSourcePropertyMappingList { /** * * @type {Pagination} * @memberof PaginatedTelegramSourcePropertyMappingList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedTelegramSourcePropertyMappingList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedTelegramSourcePropertyMappingList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedTelegramSourcePropertyMappingList interface. */ export declare function instanceOfPaginatedTelegramSourcePropertyMappingList(value: object): value is PaginatedTelegramSourcePropertyMappingList; export declare function PaginatedTelegramSourcePropertyMappingListFromJSON(json: any): PaginatedTelegramSourcePropertyMappingList; export declare function PaginatedTelegramSourcePropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTelegramSourcePropertyMappingList; export declare function PaginatedTelegramSourcePropertyMappingListToJSON(json: any): PaginatedTelegramSourcePropertyMappingList; export declare function PaginatedTelegramSourcePropertyMappingListToJSONTyped(value?: PaginatedTelegramSourcePropertyMappingList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedTelegramSourcePropertyMappingList.d.ts.map