added Offset and Limit to Orders struct

This commit is contained in:
Bastian de Byl
2023-07-03 12:14:40 -04:00
parent 73195a090f
commit e1adf8cf4f

View File

@@ -68,6 +68,8 @@ type OrderUpdate struct {
type Orders struct { type Orders struct {
TotalItems int TotalItems int
Offest int
Limit int
Items []Order Items []Order
} }