1
0
forked from BRT/arc
arc/android/ozon/GetProfileInfoScript.h
slava 91f8e96fa6 Add Ozon scripts for retrieving card info, profile details, and transaction history
Implemented `GetCardInfoScript`, `GetProfileInfoScript`, and `GetLastTransactionsScript` to automate data extraction workflows for Ozon platform. Includes support for XML parsing, ad banner handling, card navigation, profile parsing, and transaction retrieval. Added related asset files.
2026-02-27 10:15:19 +07:00

28 lines
458 B
C++

#pragma once
#include "CommonScript.h"
namespace Ozon {
class GetProfileInfoScript final : public CommonScript {
Q_OBJECT
public:
~GetProfileInfoScript() override;
explicit GetProfileInfoScript(
QString deviceId,
QString appCode,
QObject *parent = nullptr
);
protected:
void doStart() override;
private:
const QString m_deviceId;
const QString m_appCode;
QString m_error;
};
} // namespace Ozon