packagedb// PaginationParam holds the pagination fields passed through by the REST// middleware and queried by the database to page through deposits and// withdrawals.typePaginationParamstruct{Limituint64`json:"limit"`Offsetuint64`json:"offset"`Totaluint64`json:"total"`}typePaginatedDepositsstruct{Param*PaginationParam`json:"pagination"`Deposits[]DepositJSON`json:"items"`}typePaginatedWithdrawalsstruct{Param*PaginationParam`json:"pagination"`Withdrawals[]WithdrawalJSON`json:"items"`}