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 a92f4b1 + 9c2a1cd commit 170fbfaCopy full SHA for 170fbfa
src/NoFrixion.MoneyMoov/Models/Payouts/BatchPayout.cs
@@ -20,6 +20,13 @@ public class BatchPayout
20
{
21
public Guid ID { get; set; }
22
23
+ /// <summary>
24
+ /// This field is used when returning a batch payout record to a client. If set it holds the URL
25
+ /// the user needs to visit in order to complete a strong authentication check in order to approve
26
+ /// the batch payouts.
27
+ /// </summary>
28
+ public string? ApproveUrl { get; set; }
29
+
30
public List<Payout> Payouts { get; set; } = new List<Payout>();
31
32
/// <summary>
0 commit comments