/* 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 GroupSourceConnectionRequest */ export interface GroupSourceConnectionRequest { /** * * @type {string} * @memberof GroupSourceConnectionRequest */ group: string; /** * * @type {string} * @memberof GroupSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof GroupSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the GroupSourceConnectionRequest interface. */ export function instanceOfGroupSourceConnectionRequest(value: object): value is GroupSourceConnectionRequest { 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 GroupSourceConnectionRequestFromJSON(json: any): GroupSourceConnectionRequest { return GroupSourceConnectionRequestFromJSONTyped(json, false); } export function GroupSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupSourceConnectionRequest { if (json == null) { return json; } return { 'group': json['group'], 'source': json['source'], 'identifier': json['identifier'], }; } export function GroupSourceConnectionRequestToJSON(json: any): GroupSourceConnectionRequest { return GroupSourceConnectionRequestToJSONTyped(json, false); } export function GroupSourceConnectionRequestToJSONTyped(value?: GroupSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'group': value['group'], 'source': value['source'], 'identifier': value['identifier'], }; }