| 17 | } |
| 18 | |
| 19 | type bpGetTransactionListParams struct { |
| 20 | Since string `json:"since"` |
| 21 | Page int `json:"page"` |
| 22 | Size int `json:"size"` |
| 23 | } |
| 24 | |
| 25 | func (params *bpGetTransactionListParams) Validate() error { |
| 26 | if params.Size > 1000 { |
nothing calls this directly
no outgoing calls
no test coverage detected