| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- /*
- This file is part of Telegram Desktop,
- the official desktop application for the Telegram messaging service.
- For license and copyright information please follow this link:
- https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
- */
- #pragma once
- #include "data/data_statistics_chart.h"
- #include <QtCore/QDateTime>
- namespace Data {
- using EarnInt = uint64;
- constexpr auto kEarnMultiplier = EarnInt(1000000000);
- struct EarnHistoryEntry final {
- enum class Type {
- In,
- Out,
- Return,
- };
- enum class Status {
- Success,
- Failed,
- Pending,
- };
- Type type;
- Status status;
- EarnInt amount = 0;
- QDateTime date;
- QDateTime dateTo;
- QString provider;
- QDateTime successDate;
- QString successLink;
- };
- struct EarnHistorySlice final {
- using OffsetToken = int;
- std::vector<EarnHistoryEntry> list;
- int total = 0;
- bool allLoaded = false;
- OffsetToken token;
- };
- struct EarnStatistics final {
- explicit operator bool() const {
- return !!usdRate;
- }
- Data::StatisticalGraph topHoursGraph;
- Data::StatisticalGraph revenueGraph;
- EarnInt currentBalance = 0;
- EarnInt availableBalance = 0;
- EarnInt overallRevenue = 0;
- float64 usdRate = 0.;
- bool switchedOff = false;
- EarnHistorySlice firstHistorySlice;
- };
- } // namespace Data
|