/* 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'; /** * PolicyBinding Serializer * @export * @interface PatchedPolicyBindingRequest */ export interface PatchedPolicyBindingRequest { /** * * @type {string} * @memberof PatchedPolicyBindingRequest */ policy?: string | null; /** * * @type {string} * @memberof PatchedPolicyBindingRequest */ group?: string | null; /** * * @type {number} * @memberof PatchedPolicyBindingRequest */ user?: number | null; /** * * @type {string} * @memberof PatchedPolicyBindingRequest */ target?: string; /** * Negates the outcome of the policy. Messages are unaffected. * @type {boolean} * @memberof PatchedPolicyBindingRequest */ negate?: boolean; /** * * @type {boolean} * @memberof PatchedPolicyBindingRequest */ enabled?: boolean; /** * * @type {number} * @memberof PatchedPolicyBindingRequest */ order?: number; /** * Timeout after which Policy execution is terminated. * @type {number} * @memberof PatchedPolicyBindingRequest */ timeout?: number; /** * Result if the Policy execution fails. * @type {boolean} * @memberof PatchedPolicyBindingRequest */ failureResult?: boolean; } /** * Check if a given object implements the PatchedPolicyBindingRequest interface. */ export function instanceOfPatchedPolicyBindingRequest(value: object): value is PatchedPolicyBindingRequest { return true; } export function PatchedPolicyBindingRequestFromJSON(json: any): PatchedPolicyBindingRequest { return PatchedPolicyBindingRequestFromJSONTyped(json, false); } export function PatchedPolicyBindingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedPolicyBindingRequest { if (json == null) { return json; } return { 'policy': json['policy'] == null ? undefined : json['policy'], 'group': json['group'] == null ? undefined : json['group'], 'user': json['user'] == null ? undefined : json['user'], 'target': json['target'] == null ? undefined : json['target'], 'negate': json['negate'] == null ? undefined : json['negate'], 'enabled': json['enabled'] == null ? undefined : json['enabled'], 'order': json['order'] == null ? undefined : json['order'], 'timeout': json['timeout'] == null ? undefined : json['timeout'], 'failureResult': json['failure_result'] == null ? undefined : json['failure_result'], }; } export function PatchedPolicyBindingRequestToJSON(json: any): PatchedPolicyBindingRequest { return PatchedPolicyBindingRequestToJSONTyped(json, false); } export function PatchedPolicyBindingRequestToJSONTyped(value?: PatchedPolicyBindingRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'policy': value['policy'], 'group': value['group'], 'user': value['user'], 'target': value['target'], 'negate': value['negate'], 'enabled': value['enabled'], 'order': value['order'], 'timeout': value['timeout'], 'failure_result': value['failureResult'], }; }