Skip to content

Commit

Permalink
Merge pull request #442 from nofrixion/feature/MOOV-3823-payout-invoices
Browse files Browse the repository at this point in the history
MOOV-3823: Add PayrunInvoices collection to Payout model
  • Loading branch information
agranillonf authored Oct 24, 2024
2 parents c25a83d + acce14d commit 5f1ab99
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/NoFrixion.MoneyMoov/Models/Payouts/Payout.cs
Original file line number Diff line number Diff line change
Expand Up @@ -390,6 +390,12 @@ public Counterparty? DestinationAccount
public PaymentRailEnum PaymentRail { get; set; }

public string? Nonce { get; set; }

/// <summary>
/// Collection of payrun invoices associated with the payout.
/// Will be empty if the payout is not associated with a payrun.
/// </summary>
public List<PayrunInvoice>? PayrunInvoices { get; set; }

public NoFrixionProblem Validate()
{
Expand Down

0 comments on commit 5f1ab99

Please sign in to comment.