mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-19 22:33:54 +02:00
51 lines
1,006 B
C++
51 lines
1,006 B
C++
/*
|
|
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
|
|
|
|
namespace Data {
|
|
|
|
struct CreditTopupOption final {
|
|
uint64 credits = 0;
|
|
QString product;
|
|
QString currency;
|
|
uint64 amount = 0;
|
|
bool extended = false;
|
|
};
|
|
|
|
using CreditTopupOptions = std::vector<CreditTopupOption>;
|
|
|
|
struct CreditsHistoryEntry final {
|
|
using PhotoId = uint64;
|
|
enum class PeerType {
|
|
Peer,
|
|
AppStore,
|
|
PlayMarket,
|
|
Fragment,
|
|
Unsupported,
|
|
PremiumBot,
|
|
};
|
|
QString id;
|
|
QString title;
|
|
QString description;
|
|
QDateTime date;
|
|
PhotoId photoId = 0;
|
|
uint64 credits = 0;
|
|
uint64 bareId = 0;
|
|
PeerType peerType;
|
|
bool refunded = false;
|
|
};
|
|
|
|
struct CreditsStatusSlice final {
|
|
using OffsetToken = QString;
|
|
std::vector<CreditsHistoryEntry> list;
|
|
uint64 balance = 0;
|
|
bool allLoaded = false;
|
|
OffsetToken token;
|
|
};
|
|
|
|
} // namespace Data
|