| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- /*
- 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 BoostsOverview final {
- bool group = false;
- int mine = 0;
- int level = 0;
- int boostCount = 0;
- int currentLevelBoostCount = 0;
- int nextLevelBoostCount = 0;
- int premiumMemberCount = 0;
- float64 premiumMemberPercentage = 0;
- };
- struct GiftCodeLink final {
- QString text;
- QString link;
- QString slug;
- };
- struct Boost final {
- QString id;
- UserId userId = UserId(0);
- FullMsgId giveawayMessage;
- QDateTime date;
- QDateTime expiresAt;
- int expiresAfterMonths = 0;
- GiftCodeLink giftCodeLink;
- int multiplier = 0;
- uint64 credits = 0;
- bool isGift = false;
- bool isGiveaway = false;
- bool isUnclaimed = false;
- };
- struct BoostsListSlice final {
- struct OffsetToken final {
- QString next;
- bool gifts = false;
- };
- std::vector<Boost> list;
- int multipliedTotal = 0;
- bool allLoaded = false;
- OffsetToken token;
- };
- struct BoostPrepaidGiveaway final {
- QDateTime date;
- uint64 id = 0;
- uint64 credits = 0;
- int months = 0;
- int quantity = 0;
- int boosts = 0;
- };
- struct BoostStatus final {
- BoostsOverview overview;
- BoostsListSlice firstSliceBoosts;
- BoostsListSlice firstSliceGifts;
- std::vector<BoostPrepaidGiveaway> prepaidGiveaway;
- QString link;
- };
- } // namespace Data
|