/** * 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 ExpressionPolicy */ export interface ExpressionPolicy { /** * * @type {string} * @memberof ExpressionPolicy */ readonly pk: string; /** * * @type {string} * @memberof ExpressionPolicy */ 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 ExpressionPolicy */ executionLogging?: boolean; /** * Get object component so that we know how to edit the object * @type {string} * @memberof ExpressionPolicy */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof ExpressionPolicy */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof ExpressionPolicy */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof ExpressionPolicy */ readonly metaModelName: string; /** * Return objects policy is bound to * @type {number} * @memberof ExpressionPolicy */ readonly boundTo: number; /** * * @type {string} * @memberof ExpressionPolicy */ expression: string; } /** * Check if a given object implements the ExpressionPolicy interface. */ export declare function instanceOfExpressionPolicy(value: object): value is ExpressionPolicy; export declare function ExpressionPolicyFromJSON(json: any): ExpressionPolicy; export declare function ExpressionPolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressionPolicy; export declare function ExpressionPolicyToJSON(json: any): ExpressionPolicy; export declare function ExpressionPolicyToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ExpressionPolicy.d.ts.map