/** * 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 { NotificationTransport } from './NotificationTransport'; import type { Pagination } 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 declare function instanceOfPaginatedNotificationTransportList(value: object): value is PaginatedNotificationTransportList; export declare function PaginatedNotificationTransportListFromJSON(json: any): PaginatedNotificationTransportList; export declare function PaginatedNotificationTransportListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedNotificationTransportList; export declare function PaginatedNotificationTransportListToJSON(json: any): PaginatedNotificationTransportList; export declare function PaginatedNotificationTransportListToJSONTyped(value?: PaginatedNotificationTransportList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedNotificationTransportList.d.ts.map