// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // 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; string currency_; int64 amount_ = 0; string bot_url_; string store_product_; friend bool operator<(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs); friend bool operator==(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs); double get_monthly_price() const; public: PremiumGiftOption() = default; explicit PremiumGiftOption(telegram_api::object_ptr &&option); explicit PremiumGiftOption(telegram_api::object_ptr &&option); td_api::object_ptr get_premium_payment_option_object( const PremiumGiftOption &base_option) const; bool is_valid() const; template void store(StorerT &storer) const; template void parse(ParserT &parser); }; bool operator==(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs); bool operator!=(const PremiumGiftOption &lhs, const PremiumGiftOption &rhs); vector get_premium_gift_options( vector> &&options); vector get_premium_gift_options( vector> &&options); vector> get_premium_payment_options_object( const vector &options); } // namespace td