/* 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 { NotificationTransport } from './NotificationTransport'; import { NotificationTransportFromJSON, NotificationTransportFromJSONTyped, NotificationTransportToJSON, NotificationTransportToJSONTyped, } from './NotificationTransport'; import type { Pagination } from './Pagination'; import { PaginationFromJSON, PaginationFromJSONTyped, PaginationToJSON, PaginationToJSONTyped, } from './Pagination'; /** * * @export * @interface PaginatedNotificationTransportList */ export interface PaginatedNotificationTransportList { /** * * @type {Pagination} * @memberof PaginatedNotificationTransportList */ pagination: Pagination; /** * * @type {Array} * @memberof PaginatedNotificationTransportList */ results: Array; /** * * @type {{ [key: string]: any; }} * @memberof PaginatedNotificationTransportList */ autocomplete: { [key: string]: any; }; } /** * Check if a given object implements the PaginatedNotificationTransportList interface. */ export function instanceOfPaginatedNotificationTransportList(value: object): value is PaginatedNotificationTransportList { 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 PaginatedNotificationTransportListFromJSON(json: any): PaginatedNotificationTransportList { return PaginatedNotificationTransportListFromJSONTyped(json, false); } export function PaginatedNotificationTransportListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationTransportList { if (json == null) { return json; } return { 'pagination': PaginationFromJSON(json['pagination']), 'results': ((json['results'] as Array).map(NotificationTransportFromJSON)), 'autocomplete': json['autocomplete'], }; } export function PaginatedNotificationTransportListToJSON(json: any): PaginatedNotificationTransportList { return PaginatedNotificationTransportListToJSONTyped(json, false); } export function PaginatedNotificationTransportListToJSONTyped(value?: PaginatedNotificationTransportList | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'pagination': PaginationToJSON(value['pagination']), 'results': ((value['results'] as Array).map(NotificationTransportToJSON)), 'autocomplete': value['autocomplete'], }; }