15 lines
365 B
Go
15 lines
365 B
Go
|
package model
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// GetCampaignTransactionsRequest ...
|
||
|
type GetCampaignTransactionsRequest struct {
|
||
|
Campaign string `json:"campaign"`
|
||
|
Keyword string `json:"keyword"`
|
||
|
Status string `json:"status"`
|
||
|
FromAt time.Time `json:"fromAt"`
|
||
|
ToAt time.Time `json:"toAt"`
|
||
|
Page int64 `json:"page"`
|
||
|
Limit int64 `json:"limit"`
|
||
|
}
|