/** * 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 { PolicyTestResult } from './PolicyTestResult'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface RadiusCheckAccess */ export interface RadiusCheckAccess { /** * * @type {string} * @memberof RadiusCheckAccess */ attributes?: string; /** * * @type {PolicyTestResult} * @memberof RadiusCheckAccess */ access: PolicyTestResult; } /** * Check if a given object implements the RadiusCheckAccess interface. */ export declare function instanceOfRadiusCheckAccess(value: object): value is RadiusCheckAccess; export declare function RadiusCheckAccessFromJSON(json: any): RadiusCheckAccess; export declare function RadiusCheckAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): RadiusCheckAccess; export declare function RadiusCheckAccessToJSON(json: any): RadiusCheckAccess; export declare function RadiusCheckAccessToJSONTyped(value?: RadiusCheckAccess | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=RadiusCheckAccess.d.ts.map