/* 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'; /** * Group Source Connection * @export * @interface GroupKerberosSourceConnection */ export interface GroupKerberosSourceConnection { /** * * @type {number} * @memberof GroupKerberosSourceConnection */ readonly pk: number; /** * * @type {string} * @memberof GroupKerberosSourceConnection */ group: string; /** * * @type {string} * @memberof GroupKerberosSourceConnection */ source: string; /** * * @type {Source} * @memberof GroupKerberosSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof GroupKerberosSourceConnection */ identifier: string; /** * * @type {Date} * @memberof GroupKerberosSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof GroupKerberosSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the GroupKerberosSourceConnection interface. */ export function instanceOfGroupKerberosSourceConnection(value: object): value is GroupKerberosSourceConnection { if (!('pk' in value) || value['pk'] === undefined) return false; if (!('group' in value) || value['group'] === 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 GroupKerberosSourceConnectionFromJSON(json: any): GroupKerberosSourceConnection { return GroupKerberosSourceConnectionFromJSONTyped(json, false); } export function GroupKerberosSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupKerberosSourceConnection { if (json == null) { return json; } return { 'pk': json['pk'], 'group': json['group'], 'source': json['source'], 'sourceObj': SourceFromJSON(json['source_obj']), 'identifier': json['identifier'], 'created': (new Date(json['created'])), 'lastUpdated': (new Date(json['last_updated'])), }; } export function GroupKerberosSourceConnectionToJSON(json: any): GroupKerberosSourceConnection { return GroupKerberosSourceConnectionToJSONTyped(json, false); } export function GroupKerberosSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'group': value['group'], 'source': value['source'], 'identifier': value['identifier'], }; }