Skip to content

Commit

Permalink
Added DraftPaymentAnchorObject #37
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 5, 2017
1 parent 78757f3 commit c747ea7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions BunqSdk/Model/Generated/Object/DraftPaymentAnchorObject.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
using Bunq.Sdk.Model.Core;
using Bunq.Sdk.Model.Generated.Endpoint;
using Newtonsoft.Json;
using System.Collections.Generic;

namespace Bunq.Sdk.Model.Generated.Object
{
/// <summary>
/// </summary>
public class DraftPaymentAnchorObject : BunqModel
{
/// <summary>
/// </summary>
[JsonProperty(PropertyName = "Payment")]
public Payment Payment { get; set; }

/// <summary>
/// </summary>
[JsonProperty(PropertyName = "PaymentBatch")]
public PaymentBatch PaymentBatch { get; set; }
}
}

0 comments on commit c747ea7

Please sign in to comment.