/* 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 PatchedUserOAuthSourceConnectionRequest */ export interface PatchedUserOAuthSourceConnectionRequest { /** * * @type {number} * @memberof PatchedUserOAuthSourceConnectionRequest */ user?: number; /** * * @type {string} * @memberof PatchedUserOAuthSourceConnectionRequest */ source?: string; /** * * @type {string} * @memberof PatchedUserOAuthSourceConnectionRequest */ identifier?: string; /** * * @type {string} * @memberof PatchedUserOAuthSourceConnectionRequest */ accessToken?: string | null; } /** * Check if a given object implements the PatchedUserOAuthSourceConnectionRequest interface. */ export function instanceOfPatchedUserOAuthSourceConnectionRequest(value: object): value is PatchedUserOAuthSourceConnectionRequest { return true; } export function PatchedUserOAuthSourceConnectionRequestFromJSON(json: any): PatchedUserOAuthSourceConnectionRequest { return PatchedUserOAuthSourceConnectionRequestFromJSONTyped(json, false); } export function PatchedUserOAuthSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedUserOAuthSourceConnectionRequest { if (json == null) { return json; } return { 'user': json['user'] == null ? undefined : json['user'], 'source': json['source'] == null ? undefined : json['source'], 'identifier': json['identifier'] == null ? undefined : json['identifier'], 'accessToken': json['access_token'] == null ? undefined : json['access_token'], }; } export function PatchedUserOAuthSourceConnectionRequestToJSON(json: any): PatchedUserOAuthSourceConnectionRequest { return PatchedUserOAuthSourceConnectionRequestToJSONTyped(json, false); } export function PatchedUserOAuthSourceConnectionRequestToJSONTyped(value?: PatchedUserOAuthSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], 'access_token': value['accessToken'], }; }