/** * 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. */ /** * RadiusProviderPropertyMapping Serializer * @export * @interface RadiusProviderPropertyMappingRequest */ export interface RadiusProviderPropertyMappingRequest { /** * 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 RadiusProviderPropertyMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof RadiusProviderPropertyMappingRequest */ name: string; /** * * @type {string} * @memberof RadiusProviderPropertyMappingRequest */ expression: string; } /** * Check if a given object implements the RadiusProviderPropertyMappingRequest interface. */ export declare function instanceOfRadiusProviderPropertyMappingRequest(value: object): value is RadiusProviderPropertyMappingRequest; export declare function RadiusProviderPropertyMappingRequestFromJSON(json: any): RadiusProviderPropertyMappingRequest; export declare function RadiusProviderPropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): RadiusProviderPropertyMappingRequest; export declare function RadiusProviderPropertyMappingRequestToJSON(json: any): RadiusProviderPropertyMappingRequest; export declare function RadiusProviderPropertyMappingRequestToJSONTyped(value?: RadiusProviderPropertyMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RadiusProviderPropertyMappingRequest.d.ts.map