tgbot-cpp
Loading...
Searching...
No Matches
BusinessOpeningHoursInterval.h
Go to the documentation of this file.
1#ifndef TGBOT_BUSINESSOPENINGHOURSINTERVAL_H
2#define TGBOT_BUSINESSOPENINGHOURSINTERVAL_H
3
4#include <cstdint>
5#include <memory>
6
7namespace TgBot {
8
13
14public:
15 typedef std::shared_ptr<BusinessOpeningHoursInterval> Ptr;
16
20 std::int32_t openingMinute;
21
25 std::int32_t closingMinute;
26};
27}
28
29#endif //TGBOT_BUSINESSOPENINGHOURSINTERVAL_H
std::shared_ptr< BusinessOpeningHoursInterval > Ptr
std::int32_t openingMinute
The minute's sequence number in a week, starting on Monday, marking the start of the time interval du...
std::int32_t closingMinute
The minute's sequence number in a week, starting on Monday, marking the end of the time interval duri...
Definition Api.h:40