/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; import type { PropertyMapping } from './PropertyMapping'; import { PropertyMappingFromJSON, PropertyMappingFromJSONTyped, PropertyMappingToJSON, PropertyMappingToJSONTyped, } 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 function instanceOfPaginatedPropertyMappingList(value: object): value is PaginatedPropertyMappingList { 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 PaginatedPropertyMappingListFromJSON(json: any): PaginatedPropertyMappingList { return PaginatedPropertyMappingListFromJSONTyped(json, false); } export function PaginatedPropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedPropertyMappingList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(PropertyMappingFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedPropertyMappingListToJSON(json: any): PaginatedPropertyMappingList { return PaginatedPropertyMappingListToJSONTyped(json, false); } export function PaginatedPropertyMappingListToJSONTyped(value?: PaginatedPropertyMappingList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(PropertyMappingToJSON)), 'autocomplete': value['autocomplete'], }; }