tdlight/td/telegram/MessageReplyHeader.h
2023-10-23 20:54:47 +03:00

40 lines
1.1 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2023
//
// 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/DialogId.h"
#include "td/telegram/MessageId.h"
#include "td/telegram/MessageOrigin.h"
#include "td/telegram/StoryFullId.h"
#include "td/telegram/telegram_api.h"
#include "td/utils/common.h"
namespace td {
class Td;
struct MessageReplyHeader {
MessageId reply_to_message_id_;
DialogId reply_in_dialog_id_;
int32 reply_date_ = 0; // for replies in other chats
MessageOrigin reply_origin_; // for replies in other chats
MessageId top_thread_message_id_;
bool is_topic_message_ = false;
// or
StoryFullId story_full_id_;
MessageReplyHeader() = default;
MessageReplyHeader(Td *td, tl_object_ptr<telegram_api::MessageReplyHeader> &&reply_header_ptr, DialogId dialog_id,
MessageId message_id, int32 date, bool can_have_thread);
};
} // namespace td