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