tgbot-cpp
Loading...
Searching...
No Matches
BusinessOpeningHours.h
Go to the documentation of this file.
1#ifndef TGBOT_BUSINESSOPENINGHOURS_H
2#define TGBOT_BUSINESSOPENINGHOURS_H
3
5
6#include <memory>
7#include <string>
8#include <vector>
9
10namespace TgBot {
11
16
17public:
18 typedef std::shared_ptr<BusinessOpeningHours> Ptr;
19
23 std::string timeZoneName;
24
28 std::vector<BusinessOpeningHoursInterval::Ptr> openingHours;
29};
30}
31
32#endif //TGBOT_BUSINESSOPENINGHOURS_H
std::string timeZoneName
Unique name of the time zone for which the opening hours are defined.
std::shared_ptr< BusinessOpeningHours > Ptr
std::vector< BusinessOpeningHoursInterval::Ptr > openingHours
List of time intervals describing business opening hours.
Definition Api.h:40