/* 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 { EventMatcherPolicy } from './EventMatcherPolicy'; import { EventMatcherPolicyFromJSON, EventMatcherPolicyFromJSONTyped, EventMatcherPolicyToJSON, EventMatcherPolicyToJSONTyped, } from './EventMatcherPolicy'; /** * * @export * @interface PaginatedEventMatcherPolicyList */ export interface PaginatedEventMatcherPolicyList { /** * * @type {Pagination} * @memberof PaginatedEventMatcherPolicyList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedEventMatcherPolicyList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedEventMatcherPolicyList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedEventMatcherPolicyList interface. */ export function instanceOfPaginatedEventMatcherPolicyList(value: object): value is PaginatedEventMatcherPolicyList { 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 PaginatedEventMatcherPolicyListFromJSON(json: any): PaginatedEventMatcherPolicyList { return PaginatedEventMatcherPolicyListFromJSONTyped(json, false); } export function PaginatedEventMatcherPolicyListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedEventMatcherPolicyList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(EventMatcherPolicyFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedEventMatcherPolicyListToJSON(json: any): PaginatedEventMatcherPolicyList { return PaginatedEventMatcherPolicyListToJSONTyped(json, false); } export function PaginatedEventMatcherPolicyListToJSONTyped(value?: PaginatedEventMatcherPolicyList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(EventMatcherPolicyToJSON)), 'autocomplete': value['autocomplete'], }; }