2022-07-01 14:57:38 +02:00
|
|
|
//
|
2024-01-01 01:07:21 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
|
2022-07-01 14:57:38 +02:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/telegram_api.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class PremiumGiftOption {
|
|
|
|
int32 months_ = 0;
|
2023-01-19 22:41:18 +01:00
|
|
|
bool is_current_ = false;
|
|
|
|
bool is_upgrade_ = false;
|
2022-07-01 14:57:38 +02:00
|
|
|
string currency_;
|
|
|
|
int64 amount_ = 0;
|
|
|
|
string bot_url_;
|
|
|
|
string store_product_;
|
2023-01-19 22:41:18 +01:00
|
|
|
string transaction_;
|
2022-07-01 14:57:38 +02:00
|
|
|
|
2022-07-24 15:18:20 +02:00
|
|
|
friend bool operator<(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs);
|
|
|
|
|
2022-07-01 14:57:38 +02:00
|
|
|
friend bool operator==(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs);
|
|
|
|
|
2022-07-24 15:18:20 +02:00
|
|
|
double get_monthly_price() const;
|
|
|
|
|
2022-07-01 14:57:38 +02:00
|
|
|
public:
|
|
|
|
PremiumGiftOption() = default;
|
|
|
|
explicit PremiumGiftOption(telegram_api::object_ptr<telegram_api::premiumGiftOption> &&option);
|
2022-08-25 21:51:04 +02:00
|
|
|
explicit PremiumGiftOption(telegram_api::object_ptr<telegram_api::premiumSubscriptionOption> &&option);
|
2022-07-01 14:57:38 +02:00
|
|
|
|
2022-08-25 21:51:04 +02:00
|
|
|
td_api::object_ptr<td_api::premiumPaymentOption> get_premium_payment_option_object(
|
2022-07-24 15:18:20 +02:00
|
|
|
const PremiumGiftOption &base_option) const;
|
2022-07-01 14:57:38 +02:00
|
|
|
|
2023-01-19 22:41:18 +01:00
|
|
|
td_api::object_ptr<td_api::premiumStatePaymentOption> get_premium_state_payment_option_object(
|
|
|
|
const PremiumGiftOption &base_option) const;
|
|
|
|
|
2022-08-26 17:03:56 +02:00
|
|
|
bool is_valid() const;
|
|
|
|
|
2022-07-01 14:57:38 +02:00
|
|
|
template <class StorerT>
|
|
|
|
void store(StorerT &storer) const;
|
|
|
|
|
|
|
|
template <class ParserT>
|
|
|
|
void parse(ParserT &parser);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool operator==(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs);
|
|
|
|
bool operator!=(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs);
|
|
|
|
|
2022-08-26 17:03:56 +02:00
|
|
|
vector<PremiumGiftOption> get_premium_gift_options(
|
|
|
|
vector<telegram_api::object_ptr<telegram_api::premiumGiftOption>> &&options);
|
|
|
|
|
|
|
|
vector<PremiumGiftOption> get_premium_gift_options(
|
|
|
|
vector<telegram_api::object_ptr<telegram_api::premiumSubscriptionOption>> &&options);
|
|
|
|
|
2022-08-26 17:59:29 +02:00
|
|
|
vector<td_api::object_ptr<td_api::premiumPaymentOption>> get_premium_payment_options_object(
|
|
|
|
const vector<PremiumGiftOption> &options);
|
|
|
|
|
2023-01-19 22:41:18 +01:00
|
|
|
vector<td_api::object_ptr<td_api::premiumStatePaymentOption>> get_premium_state_payment_options_object(
|
|
|
|
const vector<PremiumGiftOption> &options);
|
|
|
|
|
2022-07-01 14:57:38 +02:00
|
|
|
} // namespace td
|