/* 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 { SCIMSourcePropertyMapping } from './SCIMSourcePropertyMapping'; import { SCIMSourcePropertyMappingFromJSON, SCIMSourcePropertyMappingFromJSONTyped, SCIMSourcePropertyMappingToJSON, SCIMSourcePropertyMappingToJSONTyped, } from './SCIMSourcePropertyMapping'; /** * * @export * @interface PaginatedSCIMSourcePropertyMappingList */ export interface PaginatedSCIMSourcePropertyMappingList { /** * * @type {Pagination} * @memberof PaginatedSCIMSourcePropertyMappingList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedSCIMSourcePropertyMappingList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedSCIMSourcePropertyMappingList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedSCIMSourcePropertyMappingList interface. */ export function instanceOfPaginatedSCIMSourcePropertyMappingList(value: object): value is PaginatedSCIMSourcePropertyMappingList { 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 PaginatedSCIMSourcePropertyMappingListFromJSON(json: any): PaginatedSCIMSourcePropertyMappingList { return PaginatedSCIMSourcePropertyMappingListFromJSONTyped(json, false); } export function PaginatedSCIMSourcePropertyMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedSCIMSourcePropertyMappingList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(SCIMSourcePropertyMappingFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedSCIMSourcePropertyMappingListToJSON(json: any): PaginatedSCIMSourcePropertyMappingList { return PaginatedSCIMSourcePropertyMappingListToJSONTyped(json, false); } export function PaginatedSCIMSourcePropertyMappingListToJSONTyped(value?: PaginatedSCIMSourcePropertyMappingList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(SCIMSourcePropertyMappingToJSON)), 'autocomplete': value['autocomplete'], }; }