/* 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 { Source } from './Source'; import { SourceFromJSON, SourceFromJSONTyped, SourceToJSON, SourceToJSONTyped, } from './Source'; /** * User source connection * @export * @interface UserKerberosSourceConnection */ export interface UserKerberosSourceConnection { /** * * @type {number} * @memberof UserKerberosSourceConnection */ readonly pk: number; /** * * @type {number} * @memberof UserKerberosSourceConnection */ user: number; /** * * @type {string} * @memberof UserKerberosSourceConnection */ source: string; /** * * @type {Source} * @memberof UserKerberosSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof UserKerberosSourceConnection */ identifier: string; /** * * @type {Date} * @memberof UserKerberosSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof UserKerberosSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the UserKerberosSourceConnection interface. */ export function instanceOfUserKerberosSourceConnection(value: object): value is UserKerberosSourceConnection { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('user' in value) || value['user'] === undefined) return false; if (!('source' in value) || value['source'] === undefined) return false; if (!('sourceObj' in value) || value['sourceObj'] === undefined) return false; if (!('identifier' in value) || value['identifier'] === undefined) return false; if (!('created' in value) || value['created'] === undefined) return false; if (!('lastUpdated' in value) || value['lastUpdated'] === undefined) return false; return true; } export function UserKerberosSourceConnectionFromJSON(json: any): UserKerberosSourceConnection { return UserKerberosSourceConnectionFromJSONTyped(json, false); } export function UserKerberosSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserKerberosSourceConnection { if (json == null) { return json; } return { 'pk': json['pk'], 'user': json['user'], 'source': json['source'], 'sourceObj': SourceFromJSON(json['source_obj']), 'identifier': json['identifier'], 'created': (new Date(json['created'])), 'lastUpdated': (new Date(json['last_updated'])), }; } export function UserKerberosSourceConnectionToJSON(json: any): UserKerberosSourceConnection { return UserKerberosSourceConnectionToJSONTyped(json, false); } export function UserKerberosSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }