diff --git a/BunqSdk/Model/Generated/Endpoint/MasterCardAction.cs b/BunqSdk/Model/Generated/Endpoint/MasterCardAction.cs index 795cf9f3..abd2ede5 100644 --- a/BunqSdk/Model/Generated/Endpoint/MasterCardAction.cs +++ b/BunqSdk/Model/Generated/Endpoint/MasterCardAction.cs @@ -26,6 +26,12 @@ public class MasterCardAction : BunqModel /// private const string OBJECT_TYPE = "MasterCardAction"; + /// + /// The id of the MastercardAction. + /// + [JsonProperty(PropertyName = "id")] + public int? Id { get; private set; } + /// /// The id of the monetary account this action links to. /// @@ -195,6 +201,11 @@ public static BunqResponse> List(ApiContext apiContext, i /// public override bool IsAllFieldNull() { + if (this.Id != null) + { + return false; + } + if (this.MonetaryAccountId != null) { return false; diff --git a/BunqSdk/Model/Generated/Endpoint/ShareInviteBankResponse.cs b/BunqSdk/Model/Generated/Endpoint/ShareInviteBankResponse.cs index 1d9fa468..225b6f35 100644 --- a/BunqSdk/Model/Generated/Endpoint/ShareInviteBankResponse.cs +++ b/BunqSdk/Model/Generated/Endpoint/ShareInviteBankResponse.cs @@ -72,7 +72,7 @@ public class ShareInviteBankResponse : BunqModel public string Status { get; private set; } /// - /// The share type: STANDARD. + /// The share type, either STANDARD or MUTUAL. /// [JsonProperty(PropertyName = "share_type")] public string ShareType { get; private set; }