/* 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'; /** * Group Source Connection * @export * @interface GroupPlexSourceConnectionRequest */ export interface GroupPlexSourceConnectionRequest { /** * * @type {string} * @memberof GroupPlexSourceConnectionRequest */ group: string; /** * * @type {string} * @memberof GroupPlexSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof GroupPlexSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the GroupPlexSourceConnectionRequest interface. */ export function instanceOfGroupPlexSourceConnectionRequest(value: object): value is GroupPlexSourceConnectionRequest { if (!('group' in value) || value['group'] === 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 GroupPlexSourceConnectionRequestFromJSON(json: any): GroupPlexSourceConnectionRequest { return GroupPlexSourceConnectionRequestFromJSONTyped(json, false); } export function GroupPlexSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupPlexSourceConnectionRequest { if (json == null) { return json; } return { 'group': json['group'], 'source': json['source'], 'identifier': json['identifier'], }; } export function GroupPlexSourceConnectionRequestToJSON(json: any): GroupPlexSourceConnectionRequest { return GroupPlexSourceConnectionRequestToJSONTyped(json, false); } export function GroupPlexSourceConnectionRequestToJSONTyped(value?: GroupPlexSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'group': value['group'], 'source': value['source'], 'identifier': value['identifier'], }; }