这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ShopifySharp/Services/Order/ShopifyOrderFilterOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ public class ShopifyOrderFilterOptions : ShopifyFilterOptions
[JsonProperty("ids")]
public IEnumerable<long> Ids { get; set; }

/// <summary>
/// Restrict results to after the specified ID.
/// </summary>
[JsonProperty("since_id")]
public long? SinceId { get; set; };

/// <summary>
/// The status of orders to retrieve. Default is <see cref="ShopifyOrderStatus.Any"/>.
/// </summary>
Expand Down