/** * 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 { EventMatcherPolicy } 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 declare function instanceOfPaginatedEventMatcherPolicyList(value: object): value is PaginatedEventMatcherPolicyList; export declare function PaginatedEventMatcherPolicyListFromJSON(json: any): PaginatedEventMatcherPolicyList; export declare function PaginatedEventMatcherPolicyListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedEventMatcherPolicyList; export declare function PaginatedEventMatcherPolicyListToJSON(json: any): PaginatedEventMatcherPolicyList; export declare function PaginatedEventMatcherPolicyListToJSONTyped(value?: PaginatedEventMatcherPolicyList | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PaginatedEventMatcherPolicyList.d.ts.map