blob: 09137a57438b68d32579f2bcf09d4177bcfdd094 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef TGBOT_BUSINESSLOCATION_H
#define TGBOT_BUSINESSLOCATION_H
#include "tgbot/types/Location.h"
#include <memory>
#include <string>
namespace TgBot {
/**
* @ingroup types
*/
class BusinessLocation {
public:
typedef std::shared_ptr<BusinessLocation> Ptr;
/**
* @brief Address of the business
*/
std::string address;
/**
* @brief Optional. Location of the business
*/
Location::Ptr location;
};
}
#endif //TGBOT_BUSINESSLOCATION_H
|