From 6a8b4c8f38e4989feae07bf9112ff35ce4d17dc6 Mon Sep 17 00:00:00 2001 From: Yitzchok Gottlieb Date: Thu, 17 Dec 2015 15:40:08 -0500 Subject: [PATCH] Adding since_id for OrderFilterOptions --- ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs b/ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs index 50af07bdf..ce39a5267 100644 --- a/ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs +++ b/ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs @@ -18,6 +18,12 @@ public class ShopifyOrderFilterOptions : ShopifyFilterOptions [JsonProperty("ids")] public IEnumerable Ids { get; set; } + /// + /// Restrict results to after the specified ID. + /// + [JsonProperty("since_id")] + public long? SinceId { get; set; }; + /// /// The status of orders to retrieve. Default is . ///