update field #93

Merged
Ghost merged 1 commits from feature/campaign-completed into develop 2022-12-02 03:16:33 +00:00
1 changed files with 24 additions and 15 deletions

View File

@ -14,6 +14,7 @@ type ResponseNatsCampaignTransaction struct {
ID string `json:"_id"` ID string `json:"_id"`
Cash float64 `json:"cash"` Cash float64 `json:"cash"`
Campaign ResponseCampaignShortInfo `json:"campaign"` Campaign ResponseCampaignShortInfo `json:"campaign"`
Options ResponseCampaignTransactionOptions `json:"options"`
Seller primitive.ObjectID `json:"seller"` Seller primitive.ObjectID `json:"seller"`
Type string `json:"type"` Type string `json:"type"`
Status string `json:"status"` Status string `json:"status"`
@ -41,3 +42,11 @@ type ResponseCampaignItemShortInfo struct {
Name string `json:"name"` Name string `json:"name"`
Status string `json:"status"` Status string `json:"status"`
} }
// ResponseCampaignTransactionOptions ...
type ResponseCampaignTransactionOptions struct {
Link string `json:"link"`
SocialChannel string `json:"socialChannel"`
Milestone int64 `json:"milestone"`
MilestoneTitle string `json:"milestoneTitle"`
}