Skip to content

Commit 170fbfa

Browse files
authored
Merge pull request #465 from nofrixion/feature/approve-url-fix
Added approve url to BatchPayout
2 parents a92f4b1 + 9c2a1cd commit 170fbfa

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/NoFrixion.MoneyMoov/Models/Payouts/BatchPayout.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ public class BatchPayout
2020
{
2121
public Guid ID { get; set; }
2222

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+
2330
public List<Payout> Payouts { get; set; } = new List<Payout>();
2431

2532
/// <summary>

0 commit comments

Comments
 (0)