/* 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'; /** * Dummy Policy Serializer * @export * @interface DummyPolicy */ export interface DummyPolicy { /** * * @type {string} * @memberof DummyPolicy */ readonly pk: string; /** * * @type {string} * @memberof DummyPolicy */ 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 DummyPolicy */ executionLogging?: boolean; /** * Get object component so that we know how to edit the object * @type {string} * @memberof DummyPolicy */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof DummyPolicy */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof DummyPolicy */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof DummyPolicy */ readonly metaModelName: string; /** * Return objects policy is bound to * @type {number} * @memberof DummyPolicy */ readonly boundTo: number; /** * * @type {boolean} * @memberof DummyPolicy */ result?: boolean; /** * * @type {number} * @memberof DummyPolicy */ waitMin?: number; /** * * @type {number} * @memberof DummyPolicy */ waitMax?: number; } /** * Check if a given object implements the DummyPolicy interface. */ export function instanceOfDummyPolicy(value: object): value is DummyPolicy { 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 DummyPolicyFromJSON(json: any): DummyPolicy { return DummyPolicyFromJSONTyped(json, false); } export function DummyPolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): DummyPolicy { 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'], 'result': json['result'] == null ? undefined : json['result'], 'waitMin': json['wait_min'] == null ? undefined : json['wait_min'], 'waitMax': json['wait_max'] == null ? undefined : json['wait_max'], }; } export function DummyPolicyToJSON(json: any): DummyPolicy { return DummyPolicyToJSONTyped(json, false); } export function DummyPolicyToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'execution_logging': value['executionLogging'], 'result': value['result'], 'wait_min': value['waitMin'], 'wait_max': value['waitMax'], }; }