/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.8.0-rc7 * 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 { Agent } from './Agent'; import { AgentFromJSON, AgentFromJSONTyped, AgentToJSON, AgentToJSONTyped, } from './Agent'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; /** * * @export * @interface PaginatedAgentList */ export interface PaginatedAgentList { /** * * @type {Pagination} * @memberof PaginatedAgentList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedAgentList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedAgentList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedAgentList interface. */ export function instanceOfPaginatedAgentList(value: object): value is PaginatedAgentList { 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 PaginatedAgentListFromJSON(json: any): PaginatedAgentList { return PaginatedAgentListFromJSONTyped(json, false); } export function PaginatedAgentListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAgentList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(AgentFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedAgentListToJSON(json: any): PaginatedAgentList { return PaginatedAgentListToJSONTyped(json, false); } export function PaginatedAgentListToJSONTyped(value?: PaginatedAgentList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(AgentToJSON)), 'autocomplete': value['autocomplete'], }; }