/* 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'; /** * ServiceConnection Serializer * @export * @interface ServiceConnection */ export interface ServiceConnection { /** * * @type {string} * @memberof ServiceConnection */ readonly pk: string; /** * * @type {string} * @memberof ServiceConnection */ name: string; /** * If enabled, use the local connection. Required Docker socket/Kubernetes Integration * @type {boolean} * @memberof ServiceConnection */ local?: boolean; /** * Return component used to edit this object * @type {string} * @memberof ServiceConnection */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof ServiceConnection */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof ServiceConnection */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof ServiceConnection */ readonly metaModelName: string; } /** * Check if a given object implements the ServiceConnection interface. */ export function instanceOfServiceConnection(value: object): value is ServiceConnection { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('name' in value) || value['name'] === undefined) return false; if (!('component' in value) || value['component'] === undefined) return false; if (!('verboseName' in value) || value['verboseName'] === undefined) return false; if (!('verboseNamePlural' in value) || value['verboseNamePlural'] === undefined) return false; if (!('metaModelName' in value) || value['metaModelName'] === undefined) return false; return true; } export function ServiceConnectionFromJSON(json: any): ServiceConnection { return ServiceConnectionFromJSONTyped(json, false); } export function ServiceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ServiceConnection { if (json == null) { return json; } return { 'pk': json['pk'], 'name': json['name'], 'local': json['local'] == null ? undefined : json['local'], 'component': json['component'], 'verboseName': json['verbose_name'], 'verboseNamePlural': json['verbose_name_plural'], 'metaModelName': json['meta_model_name'], }; } export function ServiceConnectionToJSON(json: any): ServiceConnection { return ServiceConnectionToJSONTyped(json, false); } export function ServiceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'name': value['name'], 'local': value['local'], }; }