*Represents the content of a contact message to be sent as the result of an inline query.*/
| 74 | |
| 75 | /*Represents the content of a contact message to be sent as the result of an inline query.*/ |
| 76 | type InputContactMessageContent struct { |
| 77 | /*Contact's phone number*/ |
| 78 | PhoneNumber string `json:"phone_number"` |
| 79 | /*Contact's first name*/ |
| 80 | FirstName string `json:"first_name"` |
| 81 | /*Optional. Contact's last name*/ |
| 82 | LastName string `json:"last_name,omitempty"` |
| 83 | /*Optional. Additional data about the contact in the form of a vCard, 0-2048 bytes*/ |
| 84 | Vcard string `json:"vcard,omitempty"` |
| 85 | } |
| 86 | |
| 87 | func (*InputContactMessageContent) GetType() string { |
| 88 | return "InputContactMessageContent" |
nothing calls this directly
no outgoing calls
no test coverage detected