/* 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 UserSourceConnectionRequest */ export interface UserSourceConnectionRequest { /** * * @type {number} * @memberof UserSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the UserSourceConnectionRequest interface. */ export function instanceOfUserSourceConnectionRequest(value: object): value is UserSourceConnectionRequest { 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 UserSourceConnectionRequestFromJSON(json: any): UserSourceConnectionRequest { return UserSourceConnectionRequestFromJSONTyped(json, false); } export function UserSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSourceConnectionRequest { if (json == null) { return json; } return { 'user': json['user'], 'source': json['source'], 'identifier': json['identifier'], }; } export function UserSourceConnectionRequestToJSON(json: any): UserSourceConnectionRequest { return UserSourceConnectionRequestToJSONTyped(json, false); } export function UserSourceConnectionRequestToJSONTyped(value?: UserSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }