Add UniqueGift.is_burned.

main
levlam 4 months ago
parent 0bea29e958
commit 529803f23d

@ -1546,6 +1546,9 @@ class Client::JsonUniqueGift final : public td::Jsonable {
if (gift_->host_id_ != nullptr) { if (gift_->host_id_ != nullptr) {
object("is_from_blockchain", td::JsonTrue()); object("is_from_blockchain", td::JsonTrue());
} }
if (gift_->is_burned_) {
object("is_burned", td::JsonTrue());
}
} }
private: private:

Loading…
Cancel
Save