/** * 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 GroupSourceConnection */ export interface GroupSourceConnection { /** * * @type {number} * @memberof GroupSourceConnection */ readonly pk: number; /** * * @type {string} * @memberof GroupSourceConnection */ group: string; /** * * @type {string} * @memberof GroupSourceConnection */ source: string; /** * * @type {Source} * @memberof GroupSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof GroupSourceConnection */ identifier: string; /** * * @type {Date} * @memberof GroupSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof GroupSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the GroupSourceConnection interface. */ export declare function instanceOfGroupSourceConnection(value: object): value is GroupSourceConnection; export declare function GroupSourceConnectionFromJSON(json: any): GroupSourceConnection; export declare function GroupSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupSourceConnection; export declare function GroupSourceConnectionToJSON(json: any): GroupSourceConnection; export declare function GroupSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GroupSourceConnection.d.ts.map