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