/** * 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'; /** * User source connection * @export * @interface UserOAuthSourceConnection */ export interface UserOAuthSourceConnection { /** * * @type {number} * @memberof UserOAuthSourceConnection */ readonly pk: number; /** * * @type {number} * @memberof UserOAuthSourceConnection */ user: number; /** * * @type {string} * @memberof UserOAuthSourceConnection */ source: string; /** * * @type {Source} * @memberof UserOAuthSourceConnection */ readonly sourceObj: Source; /** * * @type {string} * @memberof UserOAuthSourceConnection */ identifier: string; /** * * @type {Date} * @memberof UserOAuthSourceConnection */ readonly created: Date; /** * * @type {Date} * @memberof UserOAuthSourceConnection */ readonly lastUpdated: Date; } /** * Check if a given object implements the UserOAuthSourceConnection interface. */ export declare function instanceOfUserOAuthSourceConnection(value: object): value is UserOAuthSourceConnection; export declare function UserOAuthSourceConnectionFromJSON(json: any): UserOAuthSourceConnection; export declare function UserOAuthSourceConnectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserOAuthSourceConnection; export declare function UserOAuthSourceConnectionToJSON(json: any): UserOAuthSourceConnection; export declare function UserOAuthSourceConnectionToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserOAuthSourceConnection.d.ts.map