/* 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 { NotificationWebhookMapping } from './NotificationWebhookMapping'; import { NotificationWebhookMappingFromJSON, NotificationWebhookMappingFromJSONTyped, NotificationWebhookMappingToJSON, NotificationWebhookMappingToJSONTyped, } from './NotificationWebhookMapping'; /** * * @export * @interface PaginatedNotificationWebhookMappingList */ export interface PaginatedNotificationWebhookMappingList { /** * * @type {Pagination} * @memberof PaginatedNotificationWebhookMappingList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedNotificationWebhookMappingList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedNotificationWebhookMappingList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedNotificationWebhookMappingList interface. */ export function instanceOfPaginatedNotificationWebhookMappingList(value: object): value is PaginatedNotificationWebhookMappingList { 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 PaginatedNotificationWebhookMappingListFromJSON(json: any): PaginatedNotificationWebhookMappingList { return PaginatedNotificationWebhookMappingListFromJSONTyped(json, false); } export function PaginatedNotificationWebhookMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationWebhookMappingList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(NotificationWebhookMappingFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedNotificationWebhookMappingListToJSON(json: any): PaginatedNotificationWebhookMappingList { return PaginatedNotificationWebhookMappingListToJSONTyped(json, false); } export function PaginatedNotificationWebhookMappingListToJSONTyped(value?: PaginatedNotificationWebhookMappingList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(NotificationWebhookMappingToJSON)), 'autocomplete': value['autocomplete'], }; }