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