/** * 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. */ /** * Group Membership Policy Serializer * @export * @interface PatchedExpressionPolicyRequest */ export interface PatchedExpressionPolicyRequest { /** * * @type {string} * @memberof PatchedExpressionPolicyRequest */ 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 PatchedExpressionPolicyRequest */ executionLogging?: boolean; /** * * @type {string} * @memberof PatchedExpressionPolicyRequest */ expression?: string; } /** * Check if a given object implements the PatchedExpressionPolicyRequest interface. */ export declare function instanceOfPatchedExpressionPolicyRequest(value: object): value is PatchedExpressionPolicyRequest; export declare function PatchedExpressionPolicyRequestFromJSON(json: any): PatchedExpressionPolicyRequest; export declare function PatchedExpressionPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedExpressionPolicyRequest; export declare function PatchedExpressionPolicyRequestToJSON(json: any): PatchedExpressionPolicyRequest; export declare function PatchedExpressionPolicyRequestToJSONTyped(value?: PatchedExpressionPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedExpressionPolicyRequest.d.ts.map