From 8d7df4c3143a340197becca3470dafbd0a93ef21 Mon Sep 17 00:00:00 2001 From: Olivier Bellone Date: Thu, 15 Mar 2018 12:11:27 +0100 Subject: [PATCH] Add ProductId parameter to StripePlanListOptions --- src/Stripe.net/Services/Plans/StripePlanListOptions.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Stripe.net/Services/Plans/StripePlanListOptions.cs b/src/Stripe.net/Services/Plans/StripePlanListOptions.cs index 8319ea0aea..7f47365ad5 100644 --- a/src/Stripe.net/Services/Plans/StripePlanListOptions.cs +++ b/src/Stripe.net/Services/Plans/StripePlanListOptions.cs @@ -4,5 +4,10 @@ namespace Stripe { public class StripePlanListOptions : StripeListOptions { + /// + /// Only return plans for the given product. + /// + [JsonProperty("product")] + public string ProductId { get; set; } } }