eaebfad034
GitOrigin-RevId: 359e2b43322222922c44c430d3814b0a4c778dc6
32 lines
939 B
C++
32 lines
939 B
C++
//
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
|
//
|
|
// 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/tl/TlObject.h"
|
|
|
|
#include "td/utils/int_types.h"
|
|
|
|
namespace td {
|
|
|
|
namespace td_api {
|
|
class CallDiscardReason;
|
|
} // namespace td_api
|
|
|
|
namespace telegram_api {
|
|
class PhoneCallDiscardReason;
|
|
} // namespace telegram_api
|
|
|
|
enum class CallDiscardReason : int32 { Empty, Missed, Disconnected, HungUp, Declined };
|
|
|
|
CallDiscardReason get_call_discard_reason(const tl_object_ptr<telegram_api::PhoneCallDiscardReason> &reason);
|
|
|
|
tl_object_ptr<telegram_api::PhoneCallDiscardReason> get_input_phone_call_discard_reason(CallDiscardReason reason);
|
|
|
|
tl_object_ptr<td_api::CallDiscardReason> get_call_discard_reason_object(CallDiscardReason reason);
|
|
|
|
} // namespace td
|