Skip to content

Commit

Permalink
Regenerated code. (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
OGKevin committed Nov 15, 2017
1 parent d851125 commit 5e39022
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/bunq/sdk/model/generated/endpoint/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public class Card extends BunqModel {
private String type;

/**
* The sub-type of the card. Can be WILDCARD or NONE.
* The sub-type of the card.
*/
@Expose
@SerializedName("sub_type")
Expand Down Expand Up @@ -308,7 +308,7 @@ public void setType(String type) {
}

/**
* The sub-type of the card. Can be WILDCARD or NONE.
* The sub-type of the card.
*/
public String getSubType() {
return this.subType;
Expand Down
18 changes: 18 additions & 0 deletions src/main/java/com/bunq/sdk/model/generated/endpoint/CardDebit.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ public class CardDebit extends BunqModel {
@SerializedName("type")
private String type;

/**
* The sub_type of card.
*/
@Expose
@SerializedName("sub_type")
private String subType;

/**
* The second line of text on the card
*/
Expand Down Expand Up @@ -254,6 +261,17 @@ public void setType(String type) {
this.type = type;
}

/**
* The sub_type of card.
*/
public String getSubType() {
return this.subType;
}

public void setSubType(String subType) {
this.subType = subType;
}

/**
* The second line of text on the card
*/
Expand Down

0 comments on commit 5e39022

Please sign in to comment.