summaryrefslogtreecommitdiff
path: root/include/importer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/importer.hpp')
-rw-r--r--include/importer.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/importer.hpp b/include/importer.hpp
index b432b45..731d1ff 100644
--- a/include/importer.hpp
+++ b/include/importer.hpp
@@ -37,7 +37,7 @@ namespace importer {
IMPORT_QUERYING,
IMPORT_WAITING_FOR_RESPONSE,
IMPORT_DONE,
- } status;
+ } import_status;
typedef struct
{
@@ -45,14 +45,14 @@ namespace importer {
invoice result;
char file_path[MAX_LEN_PATH];
i_err error;
- status status;
+ import_status status;
} invoice_request;
typedef struct
{
time_t started_at;
i_err error;
- status status;
+ import_status status;
u32 result_count;
char result[MAX_MODEL_LIST_RESULT_COUNT][MAX_LEN_SHORT_DESC];
ai_provider service;
@@ -77,7 +77,7 @@ namespace importer {
} email_provider_impl;
const char* error_to_string(i_err error);
- const char* status_to_string(status status);
+ const char* status_to_string(import_status status);
ai_provider_impl get_ai_provider_implementation(ai_provider provider);