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"` UserID int64 `json:"user_id,omitempty"` VCard string `json:"vcard,omitempty"` }