/** * 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. */ /** * Test policy execution for a user with context * @export * @interface PolicyTestRequest */ export interface PolicyTestRequest { /** * * @type {number} * @memberof PolicyTestRequest */ user: number; /** * * @type {{ [key: string]: any; }} * @memberof PolicyTestRequest */ context?: { [key: string]: any; }; } /** * Check if a given object implements the PolicyTestRequest interface. */ export declare function instanceOfPolicyTestRequest(value: object): value is PolicyTestRequest; export declare function PolicyTestRequestFromJSON(json: any): PolicyTestRequest; export declare function PolicyTestRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyTestRequest; export declare function PolicyTestRequestToJSON(json: any): PolicyTestRequest; export declare function PolicyTestRequestToJSONTyped(value?: PolicyTestRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PolicyTestRequest.d.ts.map