/** * 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 RACPropertyMappingRequest */ export interface RACPropertyMappingRequest { /** * 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 RACPropertyMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof RACPropertyMappingRequest */ name: string; /** * * @type {string} * @memberof RACPropertyMappingRequest */ expression?: string; /** * * @type {{ [key: string]: any; }} * @memberof RACPropertyMappingRequest */ staticSettings: { [key: string]: any; }; } /** * Check if a given object implements the RACPropertyMappingRequest interface. */ export declare function instanceOfRACPropertyMappingRequest(value: object): value is RACPropertyMappingRequest; export declare function RACPropertyMappingRequestFromJSON(json: any): RACPropertyMappingRequest; export declare function RACPropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RACPropertyMappingRequest; export declare function RACPropertyMappingRequestToJSON(json: any): RACPropertyMappingRequest; export declare function RACPropertyMappingRequestToJSONTyped(value?: RACPropertyMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RACPropertyMappingRequest.d.ts.map