/* 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'; /** * Serialize Application info * @export * @interface App */ export interface App { /** * * @type {string} * @memberof App */ name: string; /** * * @type {string} * @memberof App */ label: string; } /** * Check if a given object implements the App interface. */ export function instanceOfApp(value: object): value is App { if (!('name' in value) || value['name'] === undefined) return false; if (!('label' in value) || value['label'] === undefined) return false; return true; } export function AppFromJSON(json: any): App { return AppFromJSONTyped(json, false); } export function AppFromJSONTyped(json: any, ignoreDiscriminator: boolean): App { if (json == null) { return json; } return { 'name': json['name'], 'label': json['label'], }; } export function AppToJSON(json: any): App { return AppToJSONTyped(json, false); } export function AppToJSONTyped(value?: App | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'label': value['label'], }; }