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 
19 public:
20  typedef std::shared_ptr<InputContactMessageContent> Ptr;
21 
23  InputMessageContent("InputContactMessageContent")
24  {}
25 
29  std::string phoneNumber;
30 
34  std::string firstName;
35 
39  std::string lastName;
40 
42 };
43 }
44 
45 #endif //TGBOT_INPUTCONTACTMESSAGECONTENT_H
Definition: Api.h:47
This object represents the content of a message to be sent as a result of an inline query...
std::string firstName
Contact&#39;s first name.
std::shared_ptr< InputContactMessageContent > Ptr
std::string lastName
Optional. Contact&#39;s last name.
std::string phoneNumber
Contact&#39;s phone number.
Represents the content of a contact message to be sent as the result of an inline query...