/* tslint:disable */ /* eslint-disable */ /** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 PatchedUserTelegramSourceConnectionRequest */ export interface PatchedUserTelegramSourceConnectionRequest { /** * * @type {number} * @memberof PatchedUserTelegramSourceConnectionRequest */ user?: number; /** * * @type {string} * @memberof PatchedUserTelegramSourceConnectionRequest */ source?: string; /** * * @type {string} * @memberof PatchedUserTelegramSourceConnectionRequest */ identifier?: string; } /** * Check if a given object implements the PatchedUserTelegramSourceConnectionRequest interface. */ export function instanceOfPatchedUserTelegramSourceConnectionRequest(value: object): value is PatchedUserTelegramSourceConnectionRequest { return true; } export function PatchedUserTelegramSourceConnectionRequestFromJSON(json: any): PatchedUserTelegramSourceConnectionRequest { return PatchedUserTelegramSourceConnectionRequestFromJSONTyped(json, false); } export function PatchedUserTelegramSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedUserTelegramSourceConnectionRequest { 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'], }; } export function PatchedUserTelegramSourceConnectionRequestToJSON(json: any): PatchedUserTelegramSourceConnectionRequest { return PatchedUserTelegramSourceConnectionRequestToJSONTyped(json, false); } export function PatchedUserTelegramSourceConnectionRequestToJSONTyped(value?: PatchedUserTelegramSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }