/** * 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. */ /** * SCIMSourcePropertyMapping Serializer * @export * @interface SCIMSourcePropertyMapping */ export interface SCIMSourcePropertyMapping { /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly pk: 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 SCIMSourcePropertyMapping */ managed?: string | null; /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ name: string; /** * * @type {string} * @memberof SCIMSourcePropertyMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof SCIMSourcePropertyMapping */ readonly metaModelName: string; } /** * Check if a given object implements the SCIMSourcePropertyMapping interface. */ export declare function instanceOfSCIMSourcePropertyMapping(value: object): value is SCIMSourcePropertyMapping; export declare function SCIMSourcePropertyMappingFromJSON(json: any): SCIMSourcePropertyMapping; export declare function SCIMSourcePropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): SCIMSourcePropertyMapping; export declare function SCIMSourcePropertyMappingToJSON(json: any): SCIMSourcePropertyMapping; export declare function SCIMSourcePropertyMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SCIMSourcePropertyMapping.d.ts.map