/** * 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 ExpressionPolicyRequest */ export interface ExpressionPolicyRequest { /** * * @type {string} * @memberof ExpressionPolicyRequest */ 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 ExpressionPolicyRequest */ executionLogging?: boolean; /** * * @type {string} * @memberof ExpressionPolicyRequest */ expression: string; } /** * Check if a given object implements the ExpressionPolicyRequest interface. */ export declare function instanceOfExpressionPolicyRequest(value: object): value is ExpressionPolicyRequest; export declare function ExpressionPolicyRequestFromJSON(json: any): ExpressionPolicyRequest; export declare function ExpressionPolicyRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressionPolicyRequest; export declare function ExpressionPolicyRequestToJSON(json: any): ExpressionPolicyRequest; export declare function ExpressionPolicyRequestToJSONTyped(value?: ExpressionPolicyRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ExpressionPolicyRequest.d.ts.map