1
bot/models/contact.go

11 lines
317 B
Go
Raw Permalink Normal View History

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"`
UserID int64 `json:"user_id,omitempty"`
2022-04-29 17:21:42 +08:00
VCard string `json:"vcard,omitempty"`
}