/* 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 { UserPlexSourceConnection } from './UserPlexSourceConnection'; import { UserPlexSourceConnectionFromJSON, UserPlexSourceConnectionFromJSONTyped, UserPlexSourceConnectionToJSON, UserPlexSourceConnectionToJSONTyped, } from './UserPlexSourceConnection'; /** * * @export * @interface PaginatedUserPlexSourceConnectionList */ export interface PaginatedUserPlexSourceConnectionList { /** * * @type {Pagination} * @memberof PaginatedUserPlexSourceConnectionList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedUserPlexSourceConnectionList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedUserPlexSourceConnectionList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedUserPlexSourceConnectionList interface. */ export function instanceOfPaginatedUserPlexSourceConnectionList(value: object): value is PaginatedUserPlexSourceConnectionList { 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 PaginatedUserPlexSourceConnectionListFromJSON(json: any): PaginatedUserPlexSourceConnectionList { return PaginatedUserPlexSourceConnectionListFromJSONTyped(json, false); } export function PaginatedUserPlexSourceConnectionListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedUserPlexSourceConnectionList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(UserPlexSourceConnectionFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedUserPlexSourceConnectionListToJSON(json: any): PaginatedUserPlexSourceConnectionList { return PaginatedUserPlexSourceConnectionListToJSONTyped(json, false); } export function PaginatedUserPlexSourceConnectionListToJSONTyped(value?: PaginatedUserPlexSourceConnectionList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(UserPlexSourceConnectionToJSON)), 'autocomplete': value['autocomplete'], }; }