2022-04-29 17:21:42 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
// Contact https://core.telegram.org/bots/api#contact
|
|
|
|
type Contact struct {
|
|
|
|
PhoneNumber string `json:"phone_number"`
|
|
|
|
FirstName string `json:"first_name"`
|
|
|
|
LastName string `json:"last_name,omitempty"`
|
2023-01-13 22:18:22 +08:00
|
|
|
UserID int64 `json:"user_id,omitempty"`
|
2022-04-29 17:21:42 +08:00
|
|
|
VCard string `json:"vcard,omitempty"`
|
|
|
|
}
|