/** * 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. */ /** * The type of admin action. Determines how the action payload is interpreted and executed. * @export * @enum {string} */ export declare enum AdminActionType { SettingsChange = "settings_change", ResetUserMfa = "reset_user_mfa", DeleteUser = "delete_user" } export declare function AdminActionTypeFromJSON(json: any): AdminActionType; export declare function AdminActionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminActionType; export declare function AdminActionTypeToJSON(value?: AdminActionType | null): any;