-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated V2 list options subclasses to derive from V2.ListOptions
- Loading branch information
1 parent
bb87579
commit 55ac148
Showing
3 changed files
with
15 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace Stripe.V2 | ||
{ | ||
using Newtonsoft.Json; | ||
|
||
public class ListOptions : BaseOptions | ||
{ | ||
/// <summary> | ||
/// A limit on the number of objects to be returned, between 1 and 100. | ||
/// </summary> | ||
[JsonProperty("limit")] | ||
public long? Limit { get; set; } | ||
} | ||
} |