2024-03-04 14:39:30 +01:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
2024-03-04 15:17:10 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
2024-03-04 16:17:57 +01:00
|
|
|
#include "td/telegram/UserId.h"
|
2024-03-04 15:17:10 +01:00
|
|
|
|
2024-03-04 14:39:30 +01:00
|
|
|
#include "td/actor/actor.h"
|
|
|
|
|
|
|
|
#include "td/utils/common.h"
|
2024-03-04 14:57:36 +01:00
|
|
|
#include "td/utils/Promise.h"
|
2024-03-04 14:39:30 +01:00
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2024-03-04 14:57:36 +01:00
|
|
|
class BusinessAwayMessage;
|
|
|
|
class BusinessGreetingMessage;
|
|
|
|
class BusinessWorkHours;
|
|
|
|
class DialogLocation;
|
2024-03-04 14:39:30 +01:00
|
|
|
class Td;
|
|
|
|
|
|
|
|
class BusinessManager final : public Actor {
|
|
|
|
public:
|
|
|
|
BusinessManager(Td *td, ActorShared<> parent);
|
|
|
|
|
2024-03-04 15:17:10 +01:00
|
|
|
void get_business_connected_bot(Promise<td_api::object_ptr<td_api::businessConnectedBot>> &&promise);
|
|
|
|
|
2024-03-04 15:59:29 +01:00
|
|
|
void set_business_connected_bot(td_api::object_ptr<td_api::businessConnectedBot> &&bot, Promise<Unit> &&promise);
|
|
|
|
|
2024-03-04 16:17:57 +01:00
|
|
|
void delete_business_connected_bot(UserId bot_user_id, Promise<Unit> &&promise);
|
|
|
|
|
2024-03-04 14:57:36 +01:00
|
|
|
void set_business_location(DialogLocation &&location, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void set_business_work_hours(BusinessWorkHours &&work_hours, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void set_business_greeting_message(BusinessGreetingMessage &&greeting_message, Promise<Unit> &&promise);
|
|
|
|
|
|
|
|
void set_business_away_message(BusinessAwayMessage &&away_message, Promise<Unit> &&promise);
|
|
|
|
|
2024-03-04 14:39:30 +01:00
|
|
|
private:
|
|
|
|
void tear_down() final;
|
|
|
|
|
|
|
|
Td *td_;
|
|
|
|
ActorShared<> parent_;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|