From d45750f70f88573e49697f4e127b1f7cecc7403c Mon Sep 17 00:00:00 2001 From: Remi Jannel Date: Mon, 9 Apr 2018 23:06:28 -0700 Subject: [PATCH] Support listing Orders for a specific Customer --- order.go | 1 + 1 file changed, 1 insertion(+) diff --git a/order.go b/order.go index 432fd1ad5b..cf7f9554f7 100644 --- a/order.go +++ b/order.go @@ -119,6 +119,7 @@ type OrderListParams struct { ListParams `form:"*"` Created int64 `form:"created"` CreatedRange *RangeQueryParams `form:"created"` + Customer string `form:"customer"` IDs []string `form:"ids"` Status OrderStatus `form:"status"` }