/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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'; /** * DummyStage Serializer * @export * @interface PatchedDummyStageRequest */ export interface PatchedDummyStageRequest { /** * * @type {string} * @memberof PatchedDummyStageRequest */ name?: string; /** * * @type {boolean} * @memberof PatchedDummyStageRequest */ throwError?: boolean; } /** * Check if a given object implements the PatchedDummyStageRequest interface. */ export function instanceOfPatchedDummyStageRequest(value: object): value is PatchedDummyStageRequest { return true; } export function PatchedDummyStageRequestFromJSON(json: any): PatchedDummyStageRequest { return PatchedDummyStageRequestFromJSONTyped(json, false); } export function PatchedDummyStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedDummyStageRequest { if (json == null) { return json; } return { 'name': json['name'] == null ? undefined : json['name'], 'throwError': json['throw_error'] == null ? undefined : json['throw_error'], }; } export function PatchedDummyStageRequestToJSON(json: any): PatchedDummyStageRequest { return PatchedDummyStageRequestToJSONTyped(json, false); } export function PatchedDummyStageRequestToJSONTyped(value?: PatchedDummyStageRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'throw_error': value['throwError'], }; }