2022-12-04 13:43:54 +00:00
|
|
|
package model
|
|
|
|
|
2022-12-04 14:05:25 +00:00
|
|
|
import "time"
|
|
|
|
|
2022-12-04 13:43:54 +00:00
|
|
|
// GetTransactionsRequest ...
|
|
|
|
type GetTransactionsRequest struct {
|
2022-12-04 14:05:25 +00:00
|
|
|
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"`
|
2022-12-04 13:43:54 +00:00
|
|
|
}
|