// // 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/files/FileId.h" #include "td/telegram/LabeledPricePart.h" #include "td/telegram/MessageExtendedMedia.h" #include "td/telegram/MessageId.h" #include "td/telegram/Photo.h" #include "td/telegram/td_api.h" #include "td/telegram/telegram_api.h" #include "td/utils/common.h" #include "td/utils/Status.h" #include "td/utils/StringBuilder.h" namespace td { class Td; struct Invoice { string currency; vector price_parts; int64 max_tip_amount = 0; vector suggested_tip_amounts; string recurring_payment_terms_of_service_url; bool is_test = false; bool need_name = false; bool need_phone_number = false; bool need_email_address = false; bool need_shipping_address = false; bool send_phone_number_to_provider = false; bool send_email_address_to_provider = false; bool is_flexible = false; Invoice() = default; Invoice(string &¤cy, bool is_test, bool need_shipping_address) : currency(std::move(currency)), is_test(is_test), need_shipping_address(need_shipping_address) { } }; struct InputInvoice { string title; string description; Photo photo; string start_parameter; Invoice invoice; string payload; string provider_token; string provider_data; MessageExtendedMedia extended_media; int64 total_amount = 0; MessageId receipt_message_id; }; bool operator==(const Invoice &lhs, const Invoice &rhs); bool operator!=(const Invoice &lhs, const Invoice &rhs); StringBuilder &operator<<(StringBuilder &string_builder, const Invoice &invoice); bool operator==(const InputInvoice &lhs, const InputInvoice &rhs); bool operator!=(const InputInvoice &lhs, const InputInvoice &rhs); InputInvoice get_input_invoice(tl_object_ptr &&message_invoice, Td *td, DialogId owner_dialog_id, FormattedText &&message); InputInvoice get_input_invoice(tl_object_ptr &&message_invoice, Td *td, DialogId owner_dialog_id); Result process_input_message_invoice( td_api::object_ptr &&input_message_content, Td *td); tl_object_ptr get_message_invoice_object(const InputInvoice &input_invoice, Td *td, bool skip_bot_commands, int32 max_media_timestamp); tl_object_ptr get_input_media_invoice(const InputInvoice &input_invoice, Td *td); tl_object_ptr get_input_bot_inline_message_media_invoice( const InputInvoice &input_invoice, tl_object_ptr &&reply_markup, Td *td); vector get_input_invoice_file_ids(const Td *td, const InputInvoice &input_invoice); void input_invoice_delete_thumbnail(Td *td, InputInvoice &input_invoice); bool has_input_invoice_media_timestamp(const InputInvoice &input_invoice); const FormattedText *get_input_invoice_caption(const InputInvoice &input_invoice); int32 get_input_invoice_duration(const Td *td, const InputInvoice &input_invoice); FileId get_input_invoice_upload_file_id(const InputInvoice &input_invoice); FileId get_input_invoice_any_file_id(const InputInvoice &input_invoice); FileId get_input_invoice_thumbnail_file_id(const Td *td, const InputInvoice &input_invoice); tl_object_ptr get_product_description_object(const string &description); } // namespace td