Skip to content

Commit 9b67332

Browse files
authored
Merge pull request #78 from bunq/#76-add-missing-token-qr-id-field
Added missing field id for TokenQrRequestIdeal. (#76)
2 parents 5ad1868 + 014f112 commit 9b67332

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ public class TokenQrRequestIdeal : BunqModel
3434
/// </summary>
3535
private const string OBJECT_TYPE = "TokenQrRequestIdeal";
3636

37+
/// <summary>
38+
/// The id of the RequestResponse.
39+
/// </summary>
40+
[JsonProperty(PropertyName = "id")]
41+
public int? Id { get; private set; }
42+
3743
/// <summary>
3844
/// The timestamp of when the RequestResponse was responded to.
3945
/// </summary>
@@ -175,6 +181,11 @@ public static BunqResponse<TokenQrRequestIdeal> Create(ApiContext apiContext, ID
175181
/// </summary>
176182
public override bool IsAllFieldNull()
177183
{
184+
if (this.Id != null)
185+
{
186+
return false;
187+
}
188+
178189
if (this.TimeResponded != null)
179190
{
180191
return false;

0 commit comments

Comments
 (0)