diff options
author | Ivanik <ivan170102@gmail.com> | 2021-01-29 04:25:14 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-29 00:25:14 +0100 |
commit | 8764be74616bde87bbbf6c32901cd9f43264d1e0 (patch) | |
tree | 88902ba17d6a6d245cadb7e0b277bee7ef424f99 /vendor/github.com/SevereCloud/vksdk/v2/object/secure.go | |
parent | 5dd15ef8e716c65accb6cd021095c0e19913d55f (diff) | |
download | matterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.tar.gz matterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.tar.bz2 matterbridge-msglm-8764be74616bde87bbbf6c32901cd9f43264d1e0.zip |
Add vk bridge (#1372)
* Add vk bridge
* Vk bridge attachments
* Vk bridge forwarded messages
* Vk bridge sample config and code cleanup
* Vk bridge add vendor
* Vk bridge message edit
* Vk bridge: fix fetching names of other bots
* Vk bridge: code cleanup
* Vk bridge: fix shadows declaration
* Vk bridge: remove UseFileURL
Diffstat (limited to 'vendor/github.com/SevereCloud/vksdk/v2/object/secure.go')
-rw-r--r-- | vendor/github.com/SevereCloud/vksdk/v2/object/secure.go | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/secure.go b/vendor/github.com/SevereCloud/vksdk/v2/object/secure.go new file mode 100644 index 00000000..5d64059f --- /dev/null +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/secure.go @@ -0,0 +1,33 @@ +package object // import "github.com/SevereCloud/vksdk/v2/object" + +// SecureLevel struct. +type SecureLevel struct { + Level int `json:"level"` // Level + UID int `json:"uid"` // User ID +} + +// SecureSmsNotification struct. +type SecureSmsNotification struct { + AppID int `json:"app_id"` // Application ID + Date int `json:"date"` // Date when message has been sent in Unixtime + ID int `json:"id"` // Notification ID + Message string `json:"message"` // Message text + UserID int `json:"user_id"` // User ID +} + +// SecureTokenChecked struct. +type SecureTokenChecked struct { + Date int `json:"date"` // Date when access_token has been generated in Unixtime + Expire int `json:"expire"` // Date when access_token will expire in Unixtime + Success int `json:"success"` // Returns if successfully processed + UserID int `json:"user_id"` // User ID +} + +// SecureTransaction struct. +type SecureTransaction struct { + Date int `json:"date"` // Transaction date in Unixtime + ID int `json:"id"` // Transaction ID + UIDFrom int `json:"uid_from"` // From ID + UIDTo int `json:"uid_to"` // To ID + Votes int `json:"votes"` // Votes number +} |