/* 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'; /** * * @export * @interface Software */ export interface Software { /** * * @type {string} * @memberof Software */ name: string; /** * * @type {string} * @memberof Software */ version?: string; /** * * @type {string} * @memberof Software */ source: string; /** * * @type {string} * @memberof Software */ path?: string; } /** * Check if a given object implements the Software interface. */ export function instanceOfSoftware(value: object): value is Software { if (!('name' in value) || value['name'] === undefined) return false; if (!('source' in value) || value['source'] === undefined) return false; return true; } export function SoftwareFromJSON(json: any): Software { return SoftwareFromJSONTyped(json, false); } export function SoftwareFromJSONTyped(json: any, ignoreDiscriminator: boolean): Software { if (json == null) { return json; } return { 'name': json['name'], 'version': json['version'] == null ? undefined : json['version'], 'source': json['source'], 'path': json['path'] == null ? undefined : json['path'], }; } export function SoftwareToJSON(json: any): Software { return SoftwareToJSONTyped(json, false); } export function SoftwareToJSONTyped(value?: Software | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'version': value['version'], 'source': value['source'], 'path': value['path'], }; }