We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b02f93b + 0e4c153 commit fc8e06eCopy full SHA for fc8e06e
src/NoFrixion.MoneyMoov/Models/Account/PaymentAccountMinimal.cs
@@ -66,4 +66,14 @@ public class PaymentAccountMinimal
66
/// Externally connected account can be used to view account balances and transactions.
67
/// </summary>
68
public bool IsConnectedAccount { get; set; }
69
+
70
+ /// <summary>
71
+ /// Total of the payouts that have been submitted for processing.
72
+ /// </summary>
73
+ public decimal SubmittedPayoutsBalance { get; set; }
74
75
76
+ /// The current available balance of the account. Calculated by subtracting any submitted payments from the current balance.
77
78
+ public decimal AvailableBalance => Balance - SubmittedPayoutsBalance;
79
}
0 commit comments