/* 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'; import type { FlowSetRequest } from './FlowSetRequest'; import { FlowSetRequestFromJSON, FlowSetRequestFromJSONTyped, FlowSetRequestToJSON, FlowSetRequestToJSONTyped, } from './FlowSetRequest'; /** * AuthenticatorStaticStage Serializer * @export * @interface PatchedAuthenticatorStaticStageRequest */ export interface PatchedAuthenticatorStaticStageRequest { /** * * @type {string} * @memberof PatchedAuthenticatorStaticStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedAuthenticatorStaticStageRequest */ flowSet?: Array; /** * Flow used by an authenticated user to configure this Stage. If empty, user will not be able to configure this stage. * @type {string} * @memberof PatchedAuthenticatorStaticStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof PatchedAuthenticatorStaticStageRequest */ friendlyName?: string | null; /** * * @type {number} * @memberof PatchedAuthenticatorStaticStageRequest */ tokenCount?: number; /** * * @type {number} * @memberof PatchedAuthenticatorStaticStageRequest */ tokenLength?: number; } /** * Check if a given object implements the PatchedAuthenticatorStaticStageRequest interface. */ export function instanceOfPatchedAuthenticatorStaticStageRequest(value: object): value is PatchedAuthenticatorStaticStageRequest { return true; } export function PatchedAuthenticatorStaticStageRequestFromJSON(json: any): PatchedAuthenticatorStaticStageRequest { return PatchedAuthenticatorStaticStageRequestFromJSONTyped(json, false); } export function PatchedAuthenticatorStaticStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedAuthenticatorStaticStageRequest { if (json == null) { return json; } return { 'name': json['name'] == null ? undefined : json['name'], 'flowSet': json['flow_set'] == null ? undefined : ((json['flow_set'] as Array).map(FlowSetRequestFromJSON)), 'configureFlow': json['configure_flow'] == null ? undefined : json['configure_flow'], 'friendlyName': json['friendly_name'] == null ? undefined : json['friendly_name'], 'tokenCount': json['token_count'] == null ? undefined : json['token_count'], 'tokenLength': json['token_length'] == null ? undefined : json['token_length'], }; } export function PatchedAuthenticatorStaticStageRequestToJSON(json: any): PatchedAuthenticatorStaticStageRequest { return PatchedAuthenticatorStaticStageRequestToJSONTyped(json, false); } export function PatchedAuthenticatorStaticStageRequestToJSONTyped(value?: PatchedAuthenticatorStaticStageRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'flow_set': value['flowSet'] == null ? undefined : ((value['flowSet'] as Array).map(FlowSetRequestToJSON)), 'configure_flow': value['configureFlow'], 'friendly_name': value['friendlyName'], 'token_count': value['tokenCount'], 'token_length': value['tokenLength'], }; }