Merge pull request #13 from gwinn/master

add responsible to dialog struct
This commit is contained in:
Alex Lushpai 2018-09-11 12:33:40 +03:00 committed by GitHub
commit 25316b5fe9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -399,12 +399,13 @@ type (
} }
Dialog struct { Dialog struct {
ID uint64 `json:"id"` ID uint64 `json:"id"`
BeginMessageID *uint64 `json:"begin_message_id"` BeginMessageID *uint64 `json:"begin_message_id"`
EndingMessageID *uint64 `json:"ending_message_id"` EndingMessageID *uint64 `json:"ending_message_id"`
Chat *Chat `json:"chat"` Chat *Chat `json:"chat"`
CreatedAt string `json:"created_at"` Responsible *Responsible `json:"responsible"`
ClosedAt *string `json:"closed_at"` CreatedAt string `json:"created_at"`
ClosedAt *string `json:"closed_at"`
} }
) )