feat: Added pointer to information about a user which dialog was assigned to (#41)

This commit is contained in:
Zaytsev Kirill 2021-09-24 10:04:15 +03:00 committed by GitHub
parent 43a6c884b4
commit b625439a0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -413,9 +413,10 @@ type (
}
SystemMessage struct {
Action string `json:"action"`
Dialog *SystemMessageDialog `json:"dialog,omitempty"`
User *UserRef `json:"user,omitempty"`
Action string `json:"action"`
Dialog *SystemMessageDialog `json:"dialog,omitempty"`
User *UserRef `json:"user,omitempty"`
Responsible *UserRef `json:"responsible,omitempty"`
}
SystemMessageDialog struct {