/* 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'; /** * User source connection * @export * @interface UserKerberosSourceConnectionRequest */ export interface UserKerberosSourceConnectionRequest { /** * * @type {number} * @memberof UserKerberosSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserKerberosSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserKerberosSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the UserKerberosSourceConnectionRequest interface. */ export function instanceOfUserKerberosSourceConnectionRequest(value: object): value is UserKerberosSourceConnectionRequest { if (!('user' in value) || value['user'] === undefined) return false; if (!('source' in value) || value['source'] === undefined) return false; if (!('identifier' in value) || value['identifier'] === undefined) return false; return true; } export function UserKerberosSourceConnectionRequestFromJSON(json: any): UserKerberosSourceConnectionRequest { return UserKerberosSourceConnectionRequestFromJSONTyped(json, false); } export function UserKerberosSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserKerberosSourceConnectionRequest { if (json == null) { return json; } return { 'user': json['user'], 'source': json['source'], 'identifier': json['identifier'], }; } export function UserKerberosSourceConnectionRequestToJSON(json: any): UserKerberosSourceConnectionRequest { return UserKerberosSourceConnectionRequestToJSONTyped(json, false); } export function UserKerberosSourceConnectionRequestToJSONTyped(value?: UserKerberosSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }