Skip to content

Commit

Permalink
Merge pull request #1531 from stripe/ob-fix-transfer-data
Browse files Browse the repository at this point in the history
Make ChargeTransferData.Amount nullable
  • Loading branch information
ob-stripe authored Feb 20, 2019
2 parents 8eb4ac5 + 06857d8 commit 4de396e
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 4de396e

Please sign in to comment.