Skip to content

Commit

Permalink
Added missing cvc fields. #38
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 2, 2017
1 parent 1e22ad2 commit 2f69bd5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions BunqSdk/Model/Generated/Endpoint/CardGeneratedCvc2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,24 @@ public class CardGeneratedCvc2 : BunqModel
/// </summary>
private const string OBJECT_TYPE = "CardGeneratedCvc2";

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

/// <summary>
/// The timestamp of the cvc code's creation.
/// </summary>
[JsonProperty(PropertyName = "created")]
public string Created { get; private set; }

/// <summary>
/// The timestamp of the cvc code's last update.
/// </summary>
[JsonProperty(PropertyName = "updated")]
public string Updated { get; private set; }

/// <summary>
/// The cvc2 code.
/// </summary>
Expand Down

0 comments on commit 2f69bd5

Please sign in to comment.