/** * 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. */ /** * Group Source Connection * @export * @interface GroupOAuthSourceConnectionRequest */ export interface GroupOAuthSourceConnectionRequest { /** * * @type {string} * @memberof GroupOAuthSourceConnectionRequest */ group: string; /** * * @type {string} * @memberof GroupOAuthSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof GroupOAuthSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the GroupOAuthSourceConnectionRequest interface. */ export declare function instanceOfGroupOAuthSourceConnectionRequest(value: object): value is GroupOAuthSourceConnectionRequest; export declare function GroupOAuthSourceConnectionRequestFromJSON(json: any): GroupOAuthSourceConnectionRequest; export declare function GroupOAuthSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupOAuthSourceConnectionRequest; export declare function GroupOAuthSourceConnectionRequestToJSON(json: any): GroupOAuthSourceConnectionRequest; export declare function GroupOAuthSourceConnectionRequestToJSONTyped(value?: GroupOAuthSourceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GroupOAuthSourceConnectionRequest.d.ts.map