Skip to content

Commit

Permalink
Merge pull request #1255 from stripe/remi-invoice-item-amount-optional
Browse files Browse the repository at this point in the history
Amount for invoice item is now optional
  • Loading branch information
ob-stripe authored Aug 23, 2018
2 parents f2fb32e + 05f12e7 commit 4f1f88c
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 4f1f88c

Please sign in to comment.