From 014f11261df296fe52b9a1017aee466aafa49c78 Mon Sep 17 00:00:00 2001 From: Kevin Hellemun Date: Wed, 3 Jan 2018 11:16:21 +0100 Subject: [PATCH] Added missing field id for TokenQrRequestIdeal. (bunq/sdk_csharp#76) --- .../Model/Generated/Endpoint/TokenQrRequestIdeal.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs b/BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs index c7bf4ba..6890da5 100644 --- a/BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs +++ b/BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs @@ -34,6 +34,12 @@ public class TokenQrRequestIdeal : BunqModel /// private const string OBJECT_TYPE = "TokenQrRequestIdeal"; + /// + /// The id of the RequestResponse. + /// + [JsonProperty(PropertyName = "id")] + public int? Id { get; private set; } + /// /// The timestamp of when the RequestResponse was responded to. /// @@ -175,6 +181,11 @@ public static BunqResponse Create(ApiContext apiContext, ID /// public override bool IsAllFieldNull() { + if (this.Id != null) + { + return false; + } + if (this.TimeResponded != null) { return false;