Skip to content

Added missing field id for TokenQrRequestIdeal. (bunq/sdk_csharp#76) #78

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions BunqSdk/Model/Generated/Endpoint/TokenQrRequestIdeal.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ public class TokenQrRequestIdeal : BunqModel
/// </summary>
private const string OBJECT_TYPE = "TokenQrRequestIdeal";

/// <summary>
/// The id of the RequestResponse.
/// </summary>
[JsonProperty(PropertyName = "id")]
public int? Id { get; private set; }

/// <summary>
/// The timestamp of when the RequestResponse was responded to.
/// </summary>
Expand Down Expand Up @@ -175,6 +181,11 @@ public static BunqResponse<TokenQrRequestIdeal> Create(ApiContext apiContext, ID
/// </summary>
public override bool IsAllFieldNull()
{
if (this.Id != null)
{
return false;
}

if (this.TimeResponded != null)
{
return false;
Expand Down