5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 21:32:31 +00:00
matterbridge/vendor/github.com/SevereCloud/vksdk/v2/object/notifications.go
dependabot[bot] 5a1fd7dadd
Bump github.com/SevereCloud/vksdk/v2 from 2.11.0 to 2.13.0 (#1698)
Bumps [github.com/SevereCloud/vksdk/v2](https://github.com/SevereCloud/vksdk) from 2.11.0 to 2.13.0.
- [Release notes](https://github.com/SevereCloud/vksdk/releases)
- [Commits](https://github.com/SevereCloud/vksdk/compare/v2.11.0...v2.13.0)

---
updated-dependencies:
- dependency-name: github.com/SevereCloud/vksdk/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-01-28 23:48:40 +01:00

41 lines
1.6 KiB
Go

package object // import "github.com/SevereCloud/vksdk/v2/object"
// NotificationsFeedback struct.
type NotificationsFeedback struct {
Attachments []WallWallpostAttachment `json:"attachments"`
FromID int `json:"from_id"` // Reply author's ID
Geo BaseGeo `json:"geo"`
ID int `json:"id"` // Item ID
Likes BaseLikesInfo `json:"likes"`
Text string `json:"text"` // Reply text
ToID int `json:"to_id"` // Wall owner's ID
}
// NotificationsNotification struct.
type NotificationsNotification struct {
Date int `json:"date"` // Date when the event has been occurred
Feedback RawMessage `json:"feedback"`
Parent RawMessage `json:"parent"`
Reply NotificationsReply `json:"reply"`
Type string `json:"type"` // Notification type
}
// NotificationsNotificationsComment struct.
type NotificationsNotificationsComment struct {
Date int `json:"date"` // Date when the comment has been added in Unixtime
ID int `json:"id"` // Comment ID
OwnerID int `json:"owner_id"` // Author ID
Photo PhotosPhoto `json:"photo"`
Post WallWallpost `json:"post"`
Text string `json:"text"` // Comment text
Topic BoardTopic `json:"topic"`
Video VideoVideo `json:"video"`
}
// NotificationsReply struct.
type NotificationsReply struct {
Date string `json:"date"` // Date when the reply has been created in Unixtime
ID int `json:"id"` // Reply ID
Text string `json:"text"` // Reply text
}