Included XML files for the "pay to new number" and "pay to old number" features in the Ozon platform.
14 lines
473 B
C
14 lines
473 B
C
#pragma once
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <QDateTime>
|
|
|
|
struct AppLogEntry {
|
|
int id = -1;
|
|
QString source; // "ozon/LoginAndCheck", "ozon/GetLastTransactions", etc.
|
|
QString deviceId; // ADB device id, может быть пустым
|
|
QString message; // текст ошибки
|
|
QByteArray screenshot; // PNG-байты скриншота (может быть пустым)
|
|
QDateTime timestamp;
|
|
};
|