/* tslint:disable */ /* eslint-disable */ /** * 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 { mapValues } from '../runtime'; /** * User source connection * @export * @interface UserSAMLSourceConnectionRequest */ export interface UserSAMLSourceConnectionRequest { /** * * @type {number} * @memberof UserSAMLSourceConnectionRequest */ user: number; /** * * @type {string} * @memberof UserSAMLSourceConnectionRequest */ source: string; /** * * @type {string} * @memberof UserSAMLSourceConnectionRequest */ identifier: string; } /** * Check if a given object implements the UserSAMLSourceConnectionRequest interface. */ export function instanceOfUserSAMLSourceConnectionRequest(value: object): value is UserSAMLSourceConnectionRequest { if (!('user' in value) || value['user'] === undefined) return false; if (!('source' in value) || value['source'] === undefined) return false; if (!('identifier' in value) || value['identifier'] === undefined) return false; return true; } export function UserSAMLSourceConnectionRequestFromJSON(json: any): UserSAMLSourceConnectionRequest { return UserSAMLSourceConnectionRequestFromJSONTyped(json, false); } export function UserSAMLSourceConnectionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserSAMLSourceConnectionRequest { if (json == null) { return json; } return { 'user': json['user'], 'source': json['source'], 'identifier': json['identifier'], }; } export function UserSAMLSourceConnectionRequestToJSON(json: any): UserSAMLSourceConnectionRequest { return UserSAMLSourceConnectionRequestToJSONTyped(json, false); } export function UserSAMLSourceConnectionRequestToJSONTyped(value?: UserSAMLSourceConnectionRequest | null, ignoreDiscriminator: boolean = false): any { if (value == null) { return value; } return { 'user': value['user'], 'source': value['source'], 'identifier': value['identifier'], }; }