Skip to content

Commit

Permalink
Merge branch 'release/1.25.17.65'
Browse files Browse the repository at this point in the history
  • Loading branch information
bunq-bot committed Sep 13, 2024
2 parents 886d494 + 7eb3e58 commit 727804e
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions src/main/java/com/bunq/sdk/model/generated/endpoint/Card.java
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,20 @@ public class Card extends BunqModel {
@SerializedName("card_generated_cvc2")
private CardGeneratedCvc2 cardGeneratedCvc2;

/**
* Whether this card is a limited edition metal card.
*/
@Expose
@SerializedName("is_limited_edition")
private Boolean isLimitedEdition;

/**
* The date for the member since field on the black metal card.
*/
@Expose
@SerializedName("card_metal_member_since_date")
private String cardMetalMemberSinceDate;

/**
* The plaintext pin code. Requests require encryption to be enabled.
*/
Expand Down Expand Up @@ -906,6 +920,28 @@ public void setCardGeneratedCvc2(CardGeneratedCvc2 cardGeneratedCvc2) {
this.cardGeneratedCvc2 = cardGeneratedCvc2;
}

/**
* Whether this card is a limited edition metal card.
*/
public Boolean getIsLimitedEdition() {
return this.isLimitedEdition;
}

public void setIsLimitedEdition(Boolean isLimitedEdition) {
this.isLimitedEdition = isLimitedEdition;
}

/**
* The date for the member since field on the black metal card.
*/
public String getCardMetalMemberSinceDate() {
return this.cardMetalMemberSinceDate;
}

public void setCardMetalMemberSinceDate(String cardMetalMemberSinceDate) {
this.cardMetalMemberSinceDate = cardMetalMemberSinceDate;
}

/**
*/
public boolean isAllFieldNull() {
Expand Down Expand Up @@ -1025,6 +1061,14 @@ public boolean isAllFieldNull() {
return false;
}

if (this.isLimitedEdition != null) {
return false;
}

if (this.cardMetalMemberSinceDate != null) {
return false;
}

return true;
}

Expand Down

0 comments on commit 727804e

Please sign in to comment.