/** * 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 type { Pagination } from './Pagination'; import type { NotificationWebhookMapping } 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 declare function instanceOfPaginatedNotificationWebhookMappingList(value: object): value is PaginatedNotificationWebhookMappingList; export declare function PaginatedNotificationWebhookMappingListFromJSON(json: any): PaginatedNotificationWebhookMappingList; export declare function PaginatedNotificationWebhookMappingListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationWebhookMappingList; export declare function PaginatedNotificationWebhookMappingListToJSON(json: any): PaginatedNotificationWebhookMappingList; export declare function PaginatedNotificationWebhookMappingListToJSONTyped(value?: PaginatedNotificationWebhookMappingList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedNotificationWebhookMappingList.d.ts.map