Merge pull request #34 from Selly-Modules/feature/seller-by-id

update js stream
This commit is contained in:
Minh Nguyen 2022-09-23 14:47:28 +07:00 committed by GitHub
commit 40e5219036
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 9 deletions

8
js/consumer/selly.go Normal file
View File

@ -0,0 +1,8 @@
package jsconsumer
// Selly ...
var Selly = struct {
PushNotification string
}{
PushNotification: "PULL_PUSH_NOTIFICATION",
}

View File

@ -2,13 +2,16 @@ package jsmodel
// PushNotification ...
type PushNotification struct {
User string `json:"user"`
Type string `json:"type"`
TargetID string `json:"targetId"`
IsFromAdmin bool `json:"isFromAdmin"`
Category string `json:"category"`
Options struct {
Title string `json:"title"`
Content string `json:"content"`
} `json:"options"`
User string `json:"user"`
Type string `json:"type"`
TargetID string `json:"targetId"`
IsFromAdmin bool `json:"isFromAdmin"`
Category string `json:"category"`
Options NotificationOptions `json:"options"`
}
// NotificationOptions ...
type NotificationOptions struct {
Title string `json:"title"`
Content string `json:"content"`
}