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