Skip to content

Commit 17eeb67

Browse files
committed
add missing generated code [#17]
1 parent 7d64bd7 commit 17eeb67

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

BunqSdk/Model/Generated/Card.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ public class Card : BunqModel
7676
[JsonProperty(PropertyName = "status")]
7777
public string Status { get; private set; }
7878

79+
/// <summary>
80+
/// The sub-status of the card. Can be NONE or REPLACED.
81+
/// </summary>
82+
[JsonProperty(PropertyName = "sub_status")]
83+
public string SubStatus { get; private set; }
84+
7985
/// <summary>
8086
/// The order status of the card. Can be CARD_UPDATE_REQUESTED, CARD_UPDATE_SENT, CARD_UPDATE_ACCEPTED,
8187
/// ACCEPTED_FOR_PRODUCTION or DELIVERED_TO_CUSTOMER.

BunqSdk/Model/Generated/CustomerLimit.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ public class CustomerLimit : BunqModel
3838
[JsonProperty(PropertyName = "limit_card_debit_mastercard")]
3939
public int? LimitCardDebitMastercard { get; private set; }
4040

41+
/// <summary>
42+
/// The limit of free replacement cards.
43+
/// </summary>
44+
[JsonProperty(PropertyName = "limit_card_debit_replacement")]
45+
public int? LimitCardDebitReplacement { get; private set; }
46+
4147
/// <summary>
4248
/// Get all limits for the authenticated user.
4349
/// </summary>

BunqSdk/Model/Generated/DeviceServer.cs

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,12 @@ public class DeviceServer : BunqModel
6969
public string Status { get; private set; }
7070

7171
/// <summary>
72-
/// Create a new DeviceServer. Provide the Installation token in the "X-Bunq-Client-Authentication" header. And
73-
/// sign this request with the key of which you used the public part to create the Installation. Your API key
74-
/// will be bound to the ip address of this DeviceServer.
72+
/// Create a new DeviceServer providing the installation token in the header and signing the request with the
73+
/// private part of the key you used to create the installation. The API Key that you are using will be bound to
74+
/// the IP address of the DeviceServer which you have created.<br/><br/>Using a Wildcard API Key gives you the
75+
/// freedom to make API calls even if the IP address has changed after the POST device-server.<br/><br/>Find out
76+
/// more at this link <a href="https://bunq.com/en/apikey-dynamic-ip"
77+
/// target="_blank">https://bunq.com/en/apikey-dynamic-ip</a>.
7578
/// </summary>
7679
public static BunqResponse<int> Create(ApiContext apiContext, IDictionary<string, object> requestMap,
7780
IDictionary<string, string> customHeaders = null)

0 commit comments

Comments
 (0)