/** * 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. */ import { AdminActionRequest } from './AdminActionRequest'; /** * Wrapper response for a single action request, returned by get/approve/deny endpoints. * @export * @interface AdminActionRequestResponse */ export interface AdminActionRequestResponse { /** * * @type {AdminActionRequest} * @memberof AdminActionRequestResponse */ actionRequest: AdminActionRequest; /** * Human-readable message, e.g. "This action requires approval from another admin." * @type {string} * @memberof AdminActionRequestResponse */ message?: string; } export declare function AdminActionRequestResponseFromJSON(json: any): AdminActionRequestResponse; export declare function AdminActionRequestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActionRequestResponse; export declare function AdminActionRequestResponseToJSON(value?: AdminActionRequestResponse | null): any;