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