Skip to content

Commit fc801db

Browse files
authored
Merge pull request #39 from bunq/feature/add_missing_cvc_fields_#38
Feature/add missing cvc fields #38
2 parents 1e22ad2 + 78757f3 commit fc801db

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Steps to reproduce:
2+
1.
3+
4+
## What should happen:
5+
1.
6+
7+
## What happens:
8+
1.
9+
10+
## Logs
11+
- Logs
12+
13+
## Extra info:
14+
- Tested on
15+

BunqSdk/Model/Generated/Endpoint/CardGeneratedCvc2.cs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,24 @@ public class CardGeneratedCvc2 : BunqModel
2727
/// </summary>
2828
private const string OBJECT_TYPE = "CardGeneratedCvc2";
2929

30+
/// <summary>
31+
/// The id of the cvc code.
32+
/// </summary>
33+
[JsonProperty(PropertyName = "id")]
34+
public int? Id { get; private set; }
35+
36+
/// <summary>
37+
/// The timestamp of the cvc code's creation.
38+
/// </summary>
39+
[JsonProperty(PropertyName = "created")]
40+
public string Created { get; private set; }
41+
42+
/// <summary>
43+
/// The timestamp of the cvc code's last update.
44+
/// </summary>
45+
[JsonProperty(PropertyName = "updated")]
46+
public string Updated { get; private set; }
47+
3048
/// <summary>
3149
/// The cvc2 code.
3250
/// </summary>

0 commit comments

Comments
 (0)