/** * 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. */ /** * Policy Serializer * @export * @interface PolicyRequest */ export interface PolicyRequest { /** * * @type {string} * @memberof PolicyRequest */ name: string; /** * When this option is enabled, all executions of this policy will be logged. By default, only execution errors are logged. * @type {boolean} * @memberof PolicyRequest */ executionLogging?: boolean; } /** * Check if a given object implements the PolicyRequest interface. */ export declare function instanceOfPolicyRequest(value: object): value is PolicyRequest; export declare function PolicyRequestFromJSON(json: any): PolicyRequest; export declare function PolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyRequest; export declare function PolicyRequestToJSON(json: any): PolicyRequest; export declare function PolicyRequestToJSONTyped(value?: PolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PolicyRequest.d.ts.map