/** * 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 UserPlexSourceConnectionRequest */ export interface UserPlexSourceConnectionRequest { /** * * @type {number} * @memberof UserPlexSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserPlexSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserPlexSourceConnectionRequest */ identifier: string; /** * * @type {string} * @memberof UserPlexSourceConnectionRequest */ plexToken: string; } /** * Check if a given object implements the UserPlexSourceConnectionRequest interface. */ export declare function instanceOfUserPlexSourceConnectionRequest(value: object): value is UserPlexSourceConnectionRequest; export declare function UserPlexSourceConnectionRequestFromJSON(json: any): UserPlexSourceConnectionRequest; export declare function UserPlexSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserPlexSourceConnectionRequest; export declare function UserPlexSourceConnectionRequestToJSON(json: any): UserPlexSourceConnectionRequest; export declare function UserPlexSourceConnectionRequestToJSONTyped(value?: UserPlexSourceConnectionRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=UserPlexSourceConnectionRequest.d.ts.map