export-data-affiliate-transaction #103

Merged
trunglam merged 6 commits from export-data-affiliate-transaction into master 2022-12-07 06:53:37 +00:00
1 changed files with 11 additions and 7 deletions
Showing only changes of commit 5b7d8329ae - Show all commits

View File

@ -1,12 +1,16 @@
package model
import "time"
// GetTransactionsRequest ...
type GetTransactionsRequest struct {
Page int64 `json:"page"`
Limit int64 `json:"limit"`
Keyword string `json:"keyword"`
Status string `json:"status"`
Source string `json:"source"`
Campaign string `json:"campaign"`
Seller string `json:"seller"`
Page int64 `json:"page"`
Limit int64 `json:"limit"`
Keyword string `json:"keyword"`
Status string `json:"status"`
Source string `json:"source"`
Campaign string `json:"campaign"`
Seller string `json:"seller"`
FromAt time.Time `json:"fromAt"`
ToAt time.Time `json:"toAt"`
}