/** * 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 { Token } from './Token'; /** * SCIMSource Serializer * @export * @interface SCIMSource */ export interface SCIMSource { /** * * @type {string} * @memberof SCIMSource */ readonly pk: string; /** * Source's display Name. * @type {string} * @memberof SCIMSource */ name: string; /** * Internal source name, used in URLs. * @type {string} * @memberof SCIMSource */ slug: string; /** * * @type {boolean} * @memberof SCIMSource */ enabled?: boolean; /** * * @type {Array} * @memberof SCIMSource */ userPropertyMappings?: Array; /** * * @type {Array} * @memberof SCIMSource */ groupPropertyMappings?: Array; /** * Get object component so that we know how to edit the object * @type {string} * @memberof SCIMSource */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof SCIMSource */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof SCIMSource */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof SCIMSource */ readonly metaModelName: string; /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof SCIMSource */ readonly managed: string | null; /** * * @type {string} * @memberof SCIMSource */ userPathTemplate?: string; /** * Get Root URL * @type {string} * @memberof SCIMSource */ readonly rootUrl: string; /** * * @type {Token} * @memberof SCIMSource */ readonly tokenObj: Token; } /** * Check if a given object implements the SCIMSource interface. */ export declare function instanceOfSCIMSource(value: object): value is SCIMSource; export declare function SCIMSourceFromJSON(json: any): SCIMSource; export declare function SCIMSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSource; export declare function SCIMSourceToJSON(json: any): SCIMSource; export declare function SCIMSourceToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMSource.d.ts.map