Skip to content

Commit

Permalink
Amount for invoice item is now optional
Browse files Browse the repository at this point in the history
  • Loading branch information
remi-stripe committed Aug 22, 2018
1 parent f2fb32e commit 05f12e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
public class StripeInvoiceItemCreateOptions : StripeBaseOptions, ISupportMetadata
{
[JsonProperty("amount")]
public int Amount { get; set; }
public int? Amount { get; set; }

[JsonProperty("currency")]
public string Currency { get; set; }
Expand Down

0 comments on commit 05f12e7

Please sign in to comment.