tgbot-cpp
InputContactMessageContent.h
Go to the documentation of this file.
1 //
2 // Created by Konstantin Kukin on 26/12/16.
3 //
4 
5 #ifndef TGBOT_INPUTCONTACTMESSAGECONTENT_H
6 #define TGBOT_INPUTCONTACTMESSAGECONTENT_H
7 
8 #include <memory>
9 #include <string>
10 
11 namespace TgBot {
12 
18 public:
19  typedef std::shared_ptr<InputContactMessageContent> Ptr;
20 
22  InputMessageContent("InputContactMessageContent")
23  {}
24 
28  std::string phoneNumber;
29 
33  std::string firstName;
34 
38  std::string lastName;
39 
41 };
42 }
43 
44 #endif //TGBOT_INPUTCONTACTMESSAGECONTENT_H
Definition: Api.h:44
std::shared_ptr< InputContactMessageContent > Ptr