/** * 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 type { Source } from './Source'; /** * Group Source Connection * @export * @interface GroupPlexSourceConnection */ export interface GroupPlexSourceConnection { /** * * @type {number} * @memberof GroupPlexSourceConnection */ readonly pk: number; /** * * @type {string} * @memberof GroupPlexSourceConnection */ group: string; /** * * @type {string} * @memberof GroupPlexSourceConnection */ source: string; /** * * @type {Source} * @memberof GroupPlexSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof GroupPlexSourceConnection */ identifier: string; /** * * @type {Date} * @memberof GroupPlexSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof GroupPlexSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the GroupPlexSourceConnection interface. */ export declare function instanceOfGroupPlexSourceConnection(value: object): value is GroupPlexSourceConnection; export declare function GroupPlexSourceConnectionFromJSON(json: any): GroupPlexSourceConnection; export declare function GroupPlexSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupPlexSourceConnection; export declare function GroupPlexSourceConnectionToJSON(json: any): GroupPlexSourceConnection; export declare function GroupPlexSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GroupPlexSourceConnection.d.ts.map