Skip to content

Commit c747ea7

Browse files
author
Kevin Hellemun
committed
Added DraftPaymentAnchorObject #37
1 parent 78757f3 commit c747ea7

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using Bunq.Sdk.Model.Core;
2+
using Bunq.Sdk.Model.Generated.Endpoint;
3+
using Newtonsoft.Json;
4+
using System.Collections.Generic;
5+
6+
namespace Bunq.Sdk.Model.Generated.Object
7+
{
8+
/// <summary>
9+
/// </summary>
10+
public class DraftPaymentAnchorObject : BunqModel
11+
{
12+
/// <summary>
13+
/// </summary>
14+
[JsonProperty(PropertyName = "Payment")]
15+
public Payment Payment { get; set; }
16+
17+
/// <summary>
18+
/// </summary>
19+
[JsonProperty(PropertyName = "PaymentBatch")]
20+
public PaymentBatch PaymentBatch { get; set; }
21+
}
22+
}

0 commit comments

Comments
 (0)