/* 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 { PolicyEngineMode } from './PolicyEngineMode'; import { PolicyEngineModeFromJSON, PolicyEngineModeFromJSONTyped, PolicyEngineModeToJSON, PolicyEngineModeToJSONTyped, } from './PolicyEngineMode'; /** * Application Serializer * @export * @interface PatchedApplicationRequest */ export interface PatchedApplicationRequest { /** * Application's display Name. * @type {string} * @memberof PatchedApplicationRequest */ name?: string; /** * Internal application name, used in URLs. * @type {string} * @memberof PatchedApplicationRequest */ slug?: string; /** * * @type {number} * @memberof PatchedApplicationRequest */ provider?: number | null; /** * * @type {Array} * @memberof PatchedApplicationRequest */ backchannelProviders?: Array; /** * Open launch URL in a new browser tab or window. * @type {boolean} * @memberof PatchedApplicationRequest */ openInNewTab?: boolean; /** * * @type {string} * @memberof PatchedApplicationRequest */ metaLaunchUrl?: string; /** * * @type {string} * @memberof PatchedApplicationRequest */ metaDescription?: string; /** * * @type {string} * @memberof PatchedApplicationRequest */ metaPublisher?: string; /** * * @type {PolicyEngineMode} * @memberof PatchedApplicationRequest */ policyEngineMode?: PolicyEngineMode; /** * * @type {string} * @memberof PatchedApplicationRequest */ group?: string; } /** * Check if a given object implements the PatchedApplicationRequest interface. */ export function instanceOfPatchedApplicationRequest(value: object): value is PatchedApplicationRequest { return true; } export function PatchedApplicationRequestFromJSON(json: any): PatchedApplicationRequest { return PatchedApplicationRequestFromJSONTyped(json, false); } export function PatchedApplicationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedApplicationRequest { if (json == null) { return json; } return { 'name': json['name'] == null ? undefined : json['name'], 'slug': json['slug'] == null ? undefined : json['slug'], 'provider': json['provider'] == null ? undefined : json['provider'], 'backchannelProviders': json['backchannel_providers'] == null ? undefined : json['backchannel_providers'], 'openInNewTab': json['open_in_new_tab'] == null ? undefined : json['open_in_new_tab'], 'metaLaunchUrl': json['meta_launch_url'] == null ? undefined : json['meta_launch_url'], 'metaDescription': json['meta_description'] == null ? undefined : json['meta_description'], 'metaPublisher': json['meta_publisher'] == null ? undefined : json['meta_publisher'], 'policyEngineMode': json['policy_engine_mode'] == null ? undefined : PolicyEngineModeFromJSON(json['policy_engine_mode']), 'group': json['group'] == null ? undefined : json['group'], }; } export function PatchedApplicationRequestToJSON(json: any): PatchedApplicationRequest { return PatchedApplicationRequestToJSONTyped(json, false); } export function PatchedApplicationRequestToJSONTyped(value?: PatchedApplicationRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'slug': value['slug'], 'provider': value['provider'], 'backchannel_providers': value['backchannelProviders'], 'open_in_new_tab': value['openInNewTab'], 'meta_launch_url': value['metaLaunchUrl'], 'meta_description': value['metaDescription'], 'meta_publisher': value['metaPublisher'], 'policy_engine_mode': PolicyEngineModeToJSON(value['policyEngineMode']), 'group': value['group'], }; }