/** * 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 { LogEvent } from './LogEvent'; /** * result of a policy test * @export * @interface PolicyTestResult */ export interface PolicyTestResult { /** * * @type {boolean} * @memberof PolicyTestResult */ passing: boolean; /** * * @type {Array} * @memberof PolicyTestResult */ readonly messages: Array; /** * * @type {Array} * @memberof PolicyTestResult */ readonly logMessages: Array; } /** * Check if a given object implements the PolicyTestResult interface. */ export declare function instanceOfPolicyTestResult(value: object): value is PolicyTestResult; export declare function PolicyTestResultFromJSON(json: any): PolicyTestResult; export declare function PolicyTestResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyTestResult; export declare function PolicyTestResultToJSON(json: any): PolicyTestResult; export declare function PolicyTestResultToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PolicyTestResult.d.ts.map