/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Request body for approving or denying an action request. * @export * @interface AdminActionReviewRequest */ export interface AdminActionReviewRequest { /** * Optional note explaining the decision. Shown to the submitter. * @type {string} * @memberof AdminActionReviewRequest */ note?: string; } export declare function AdminActionReviewRequestFromJSON(json: any): AdminActionReviewRequest; export declare function AdminActionReviewRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActionReviewRequest; export declare function AdminActionReviewRequestToJSON(value?: AdminActionReviewRequest | null): any;