natsio/js/consumer/selly.go

19 lines
771 B
Go
Raw Normal View History

2022-09-23 07:47:00 +00:00
package jsconsumer
// Selly ...
var Selly = struct {
2023-03-02 04:44:13 +00:00
PushNotification string
UpdateSellerAffiliateStatistic string
CheckAnDInsertCashflowBySeller string
2023-03-02 04:46:03 +00:00
SubscriberTopic string
2023-03-02 04:44:13 +00:00
UpdateSellerSavingCampaignStatistic string
2023-03-14 04:34:38 +00:00
GenerateVoucherPromotion string
2022-09-23 07:47:00 +00:00
}{
2023-03-02 04:44:13 +00:00
PushNotification: "PULL_PUSH_NOTIFICATION",
UpdateSellerAffiliateStatistic: "PULL_UPDATE_SELLER_AFFILIATE_STATISTIC",
CheckAnDInsertCashflowBySeller: "PULL_CHECK_AND_INSERT_CASHFLOW_BY_SELLER",
2023-03-02 04:46:03 +00:00
SubscriberTopic: "PULL_SUBSCRIBER_TOPIC",
2023-03-02 04:44:13 +00:00
UpdateSellerSavingCampaignStatistic: "PULL_UPDATE_SELLER_SAVING_CAMPAIGN_STATISTIC",
2023-03-14 04:34:38 +00:00
GenerateVoucherPromotion: "PULL_GENERATE_VOUCHER_PROMOTION",
2022-09-23 07:47:00 +00:00
}