feature/campaign-completed #94

Merged
minhnguyen merged 14 commits from feature/campaign-completed into master 2022-12-02 06:58:08 +00:00
1 changed files with 24 additions and 15 deletions
Showing only changes of commit 9cec9d8c2f - Show all commits

View File

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