/* tslint:disable */ /* eslint-disable */ /** * 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. */ import { mapValues } from '../runtime'; /** * 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 function instanceOfPolicy(value: object): value is Policy { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; if (!('boundTo' in value) || value['boundTo'] === undefined) return false; return true; } export function PolicyFromJSON(json: any): Policy { return PolicyFromJSONTyped(json, false); } export function PolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): Policy { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'executionLogging': json['execution_logging'] == null ? undefined : json['execution_logging'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], 'boundTo': json['bound_to'], }; } export function PolicyToJSON(json: any): Policy { return PolicyToJSONTyped(json, false); } export function PolicyToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'execution_logging': value['executionLogging'], }; }