Commit 7df801b 1 parent 16b9255 commit 7df801b Copy full SHA for 7df801b
File tree 1 file changed +6
-3
lines changed
src/Stripe.net/Services/Products
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,21 @@ namespace Stripe
5
5
6
6
public class PlanProductCreateOptions : INestedOptions
7
7
{
8
+ [ JsonProperty ( "active" ) ]
9
+ public bool ? Active { get ; set ; }
10
+
8
11
[ JsonProperty ( "id" ) ]
9
12
public string Id { get ; set ; }
10
13
14
+ [ JsonProperty ( "metadata" ) ]
15
+ public Dictionary < string , string > Metadata { get ; set ; }
16
+
11
17
[ JsonProperty ( "name" ) ]
12
18
public string Name { get ; set ; }
13
19
14
20
[ JsonProperty ( "statement_descriptor" ) ]
15
21
public string StatementDescriptor { get ; set ; }
16
22
17
- [ JsonProperty ( "metadata" ) ]
18
- public Dictionary < string , string > Metadata { get ; set ; }
19
-
20
23
[ JsonProperty ( "unit_label" ) ]
21
24
public string UnitLabel { get ; set ; }
22
25
}
You can’t perform that action at this time.
0 commit comments