2022-12-04 13:43:54 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
// GetTransactionsRequest ...
|
|
|
|
type GetTransactionsRequest struct {
|
|
|
|
Page int64 `json:"page"`
|
|
|
|
Limit int64 `json:"limit"`
|
|
|
|
Keyword string `json:"keyword"`
|
2022-12-04 14:01:43 +00:00
|
|
|
Status string `json:"status"`
|
2022-12-04 13:43:54 +00:00
|
|
|
Source string `json:"source"`
|
|
|
|
Campaign string `json:"campaign"`
|
|
|
|
Seller string `json:"seller"`
|
|
|
|
}
|