/* 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'; /** * AuthenticatorEndpointGDTCStage Serializer * @export * @interface PatchedAuthenticatorEndpointGDTCStageRequest */ export interface PatchedAuthenticatorEndpointGDTCStageRequest { /** * * @type {string} * @memberof PatchedAuthenticatorEndpointGDTCStageRequest */ name?: string; /** * * @type {Array} * @memberof PatchedAuthenticatorEndpointGDTCStageRequest */ 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 PatchedAuthenticatorEndpointGDTCStageRequest */ configureFlow?: string | null; /** * * @type {string} * @memberof PatchedAuthenticatorEndpointGDTCStageRequest */ friendlyName?: string | null; /** * * @type {{ [key: string]: any; }} * @memberof PatchedAuthenticatorEndpointGDTCStageRequest */ credentials?: { [key: string]: any; }; } /** * Check if a given object implements the PatchedAuthenticatorEndpointGDTCStageRequest interface. */ export function instanceOfPatchedAuthenticatorEndpointGDTCStageRequest(value: object): value is PatchedAuthenticatorEndpointGDTCStageRequest { return true; } export function PatchedAuthenticatorEndpointGDTCStageRequestFromJSON(json: any): PatchedAuthenticatorEndpointGDTCStageRequest { return PatchedAuthenticatorEndpointGDTCStageRequestFromJSONTyped(json, false); } export function PatchedAuthenticatorEndpointGDTCStageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedAuthenticatorEndpointGDTCStageRequest { 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'], 'credentials': json['credentials'] == null ? undefined : json['credentials'], }; } export function PatchedAuthenticatorEndpointGDTCStageRequestToJSON(json: any): PatchedAuthenticatorEndpointGDTCStageRequest { return PatchedAuthenticatorEndpointGDTCStageRequestToJSONTyped(json, false); } export function PatchedAuthenticatorEndpointGDTCStageRequestToJSONTyped(value?: PatchedAuthenticatorEndpointGDTCStageRequest | 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'], 'credentials': value['credentials'], }; }