new fields for Chat p2
parent
0c8884bcba
commit
32f5ed8433
19
types.go
19
types.go
|
@ -89,15 +89,16 @@ type ChatPhoto struct {
|
||||||
|
|
||||||
// Chat contains information about the place a message was sent.
|
// Chat contains information about the place a message was sent.
|
||||||
type Chat struct {
|
type Chat struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
Title string `json:"title"` // optional
|
Title string `json:"title"` // optional
|
||||||
UserName string `json:"username"` // optional
|
UserName string `json:"username"` // optional
|
||||||
FirstName string `json:"first_name"` // optional
|
FirstName string `json:"first_name"` // optional
|
||||||
LastName string `json:"last_name"` // optional
|
LastName string `json:"last_name"` // optional
|
||||||
AllMembersAreAdmins bool `json:"all_members_are_administrators"` // optional
|
AllMembersAreAdmins bool `json:"all_members_are_administrators"` // optional
|
||||||
Description string `json:"description,omitempty"` // optional
|
Photo *ChatPhoto `json:"photo"`
|
||||||
InviteLink string `json:"invite_link,omitempty"`
|
Description string `json:"description,omitempty"` // optional
|
||||||
|
InviteLink string `json:"invite_link,omitempty"` // optional
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsPrivate returns if the Chat is a private conversation.
|
// IsPrivate returns if the Chat is a private conversation.
|
||||||
|
|
Loading…
Reference in New Issue