Skip to content

Commit a267c1c

Browse files
arifmarifm
authored andcommitted
Create yapily beneficiary endpoint
1 parent fe668c1 commit a267c1c

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// -----------------------------------------------------------------------------
2+
// Filename: BeneficiaryCreate.cs
3+
//
4+
// Description: Model to create a yapily beneficiary.
5+
//
6+
// Author(s):
7+
// Arif Matin ([email protected])
8+
//
9+
// History:
10+
// 14 Oct 2025 Arif Matin Created, Carrick on Shannon, Leitrim, Ireland.
11+
//
12+
// License:
13+
// MIT.
14+
// -----------------------------------------------------------------------------
15+
16+
namespace NoFrixion.MoneyMoov.Models.OpenBanking
17+
{
18+
public class BeneficiaryCreate
19+
{
20+
/// <summary>
21+
/// Create a beneficiary for an payment account with it's ID.
22+
/// </summary>
23+
public Guid AccountID { get; set; }
24+
25+
/// <summary>
26+
/// Only required if creating a beneficiary for a virtual account.
27+
/// </summary>
28+
public Guid MerchantID { get; set; }
29+
30+
/// <summary>
31+
/// ID of the account identifier to create the beneficiary for a virtual account.
32+
/// </summary>
33+
public Guid AccountIdentifierID { get; set; }
34+
}
35+
}

0 commit comments

Comments
 (0)