Skip to content

Commit 7df801b

Browse files
committed
add active property and alphabetize
1 parent 16b9255 commit 7df801b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/Stripe.net/Services/Products/PlanProductCreateOptions.cs

+6-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@ namespace Stripe
55

66
public class PlanProductCreateOptions : INestedOptions
77
{
8+
[JsonProperty("active")]
9+
public bool? Active { get; set; }
10+
811
[JsonProperty("id")]
912
public string Id { get; set; }
1013

14+
[JsonProperty("metadata")]
15+
public Dictionary<string, string> Metadata { get; set; }
16+
1117
[JsonProperty("name")]
1218
public string Name { get; set; }
1319

1420
[JsonProperty("statement_descriptor")]
1521
public string StatementDescriptor { get; set; }
1622

17-
[JsonProperty("metadata")]
18-
public Dictionary<string, string> Metadata { get; set; }
19-
2023
[JsonProperty("unit_label")]
2124
public string UnitLabel { get; set; }
2225
}

0 commit comments

Comments
 (0)