/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { ReviewerUser } from './ReviewerUser'; /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface Review */ export interface Review { /** * * @type {string} * @memberof Review */ readonly id: string; /** * * @type {string} * @memberof Review */ iteration: string; /** * * @type {ReviewerUser} * @memberof Review */ readonly reviewer: ReviewerUser; /** * * @type {Date} * @memberof Review */ readonly timestamp: Date; /** * * @type {string} * @memberof Review */ note?: string | null; } /** * Check if a given object implements the Review interface. */ export declare function instanceOfReview(value: object): value is Review; export declare function ReviewFromJSON(json: any): Review; export declare function ReviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): Review; export declare function ReviewToJSON(json: any): Review; export declare function ReviewToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Review.d.ts.map