1
0
mirror of synced 2024-11-22 04:56:06 +03:00

Merge pull request #7 from gwinn/master

message struct update
This commit is contained in:
Alex Lushpai 2018-06-01 13:42:20 +03:00 committed by GitHub
commit b807d47302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,21 +40,21 @@ type DeleteResponse struct {
// User struct
type User struct {
ExternalID string `url:"external_id" json:"external_id"`
Nickname string `url:"nickname"`
Firstname string `url:"first_name,omitempty"`
Lastname string `url:"last_name,omitempty"`
Avatar string `url:"avatar,omitempty"`
ProfileURL string `url:"profile_url,omitempty"`
Country string `url:"country,omitempty"`
Language string `url:"language,omitempty"`
Phone string `url:"phone,omitempty"`
Nickname string `url:"nickname" json:"nickname"`
Firstname string `url:"first_name,omitempty" json:"first_name"`
Lastname string `url:"last_name,omitempty" json:"last_name"`
Avatar string `url:"avatar,omitempty" json:"avatar"`
ProfileURL string `url:"profile_url,omitempty" json:"profile_url"`
Country string `url:"country,omitempty" json:"country"`
Language string `url:"language,omitempty" json:"language"`
Phone string `url:"phone,omitempty" json:"phone"`
}
// Message struct
type Message struct {
ExternalID string `url:"external_id" json:"external_id"`
Type string `url:"type,omitempty"`
Text string `url:"text,omitempty"`
Type string `url:"type,omitempty" json:"type"`
Text string `url:"text,omitempty" json:"text"`
}
// SendMessage struct