/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; import type { TelegramSourcePropertyMapping } from './TelegramSourcePropertyMapping'; import { TelegramSourcePropertyMappingFromJSON, TelegramSourcePropertyMappingFromJSONTyped, TelegramSourcePropertyMappingToJSON, TelegramSourcePropertyMappingToJSONTyped, } 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 function instanceOfPaginatedTelegramSourcePropertyMappingList(value: object): value is PaginatedTelegramSourcePropertyMappingList { if (!('pagination' in value) || value['pagination'] === undefined) return false; if (!('results' in value) || value['results'] === undefined) return false; if (!('autocomplete' in value) || value['autocomplete'] === undefined) return false; return true; } export function PaginatedTelegramSourcePropertyMappingListFromJSON(json: any): PaginatedTelegramSourcePropertyMappingList { return PaginatedTelegramSourcePropertyMappingListFromJSONTyped(json, false); } export function PaginatedTelegramSourcePropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTelegramSourcePropertyMappingList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(TelegramSourcePropertyMappingFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedTelegramSourcePropertyMappingListToJSON(json: any): PaginatedTelegramSourcePropertyMappingList { return PaginatedTelegramSourcePropertyMappingListToJSONTyped(json, false); } export function PaginatedTelegramSourcePropertyMappingListToJSONTyped(value?: PaginatedTelegramSourcePropertyMappingList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(TelegramSourcePropertyMappingToJSON)), 'autocomplete': value['autocomplete'], }; }