/** * 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. */ /** * User source connection * @export * @interface UserOAuthSourceConnectionRequest */ export interface UserOAuthSourceConnectionRequest { /** * * @type {number} * @memberof UserOAuthSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserOAuthSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserOAuthSourceConnectionRequest */ identifier: string; /** * * @type {string} * @memberof UserOAuthSourceConnectionRequest */ accessToken?: string | null; } /** * Check if a given object implements the UserOAuthSourceConnectionRequest interface. */ export declare function instanceOfUserOAuthSourceConnectionRequest(value: object): value is UserOAuthSourceConnectionRequest; export declare function UserOAuthSourceConnectionRequestFromJSON(json: any): UserOAuthSourceConnectionRequest; export declare function UserOAuthSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserOAuthSourceConnectionRequest; export declare function UserOAuthSourceConnectionRequestToJSON(json: any): UserOAuthSourceConnectionRequest; export declare function UserOAuthSourceConnectionRequestToJSONTyped(value?: UserOAuthSourceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserOAuthSourceConnectionRequest.d.ts.map