Skip to content

Commit

Permalink
Make ChargeTransferData.Amount nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
ob-stripe committed Feb 20, 2019
1 parent 8eb4ac5 commit 06857d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Stripe.net/Entities/Charges/ChargeTransferData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Stripe
public class ChargeTransferData : StripeEntity
{
[JsonProperty("amount")]
public long Amount { get; set; }
public long? Amount { get; set; }

#region Expandable Destination (Account)
[JsonIgnore]
Expand Down

0 comments on commit 06857d8

Please sign in to comment.