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