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