2020-01-27 01:19:54 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2020-01-27 01:19:54 +01: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"
|
2021-09-25 20:27:32 +02:00
|
|
|
#include "td/telegram/telegram_api.h"
|
2020-01-27 01:19:54 +01:00
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2021-09-25 20:27:32 +02:00
|
|
|
#include "td/utils/Slice.h"
|
2020-01-27 01:19:54 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
|
|
|
enum class TopDialogCategory : int32 {
|
|
|
|
Correspondent,
|
|
|
|
BotPM,
|
|
|
|
BotInline,
|
|
|
|
Group,
|
|
|
|
Channel,
|
|
|
|
Call,
|
|
|
|
ForwardUsers,
|
|
|
|
ForwardChats,
|
|
|
|
Size
|
|
|
|
};
|
|
|
|
|
2021-09-25 20:27:32 +02:00
|
|
|
CSlice get_top_dialog_category_name(TopDialogCategory category);
|
|
|
|
|
|
|
|
TopDialogCategory get_top_dialog_category(const td_api::object_ptr<td_api::TopChatCategory> &category);
|
|
|
|
|
|
|
|
TopDialogCategory get_top_dialog_category(const telegram_api::object_ptr<telegram_api::TopPeerCategory> &category);
|
|
|
|
|
|
|
|
telegram_api::object_ptr<telegram_api::TopPeerCategory> get_input_top_peer_category(TopDialogCategory category);
|
2020-01-27 01:19:54 +01:00
|
|
|
|
|
|
|
} // namespace td
|