/** * 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. */ /** * Mixin to validate that a valid enterprise license * exists before allowing to save the object * @export * @interface ReviewRequest */ export interface ReviewRequest { /** * * @type {string} * @memberof ReviewRequest */ iteration: string; /** * * @type {string} * @memberof ReviewRequest */ note?: string | null; } /** * Check if a given object implements the ReviewRequest interface. */ export declare function instanceOfReviewRequest(value: object): value is ReviewRequest; export declare function ReviewRequestFromJSON(json: any): ReviewRequest; export declare function ReviewRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReviewRequest; export declare function ReviewRequestToJSON(json: any): ReviewRequest; export declare function ReviewRequestToJSONTyped(value?: ReviewRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ReviewRequest.d.ts.map