tgbot-cpp
Loading...
Searching...
No Matches
ShippingQuery.h
Go to the documentation of this file.
1#ifndef TGBOT_SHIPPINGQUERY_H
2#define TGBOT_SHIPPINGQUERY_H
3
4#include "tgbot/types/User.h"
6
7#include <string>
8#include <memory>
9#include <vector>
10
11namespace TgBot {
12
21public:
22 typedef std::shared_ptr<ShippingQuery> Ptr;
23
27 std::string id;
28
33
37 std::string invoicePayload;
38
43};
44}
45
46#endif //TGBOT_SHIPPINGQUERY_H
std::shared_ptr< ShippingAddress > Ptr
This object contains information about an incoming shipping query.
ShippingAddress::Ptr shippingAddress
User specified shipping address.
User::Ptr from
User who sent the query.
std::shared_ptr< ShippingQuery > Ptr
std::string invoicePayload
Bot specified invoice payload.
std::string id
Unique query identifier.
std::shared_ptr< User > Ptr
Definition User.h:18
Definition Api.h:39