Skip to content

Commit c2ee071

Browse files
meotchwilliamsmeotch
authored andcommitted
fix: add managed cards allow push notifications
1 parent 91f52ca commit c2ee071

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

.vogue.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
defaultRules: {}
3+
packageRules:
4+
- package: "com.github.mxenabled.coppuccino:com.github.mxenabled.coppuccino.gradle.plugin"
5+
rules: {}
6+
suppressUntil: "2026-02-09"
7+
- package: "com.github.mxenabled.vogue:com.github.mxenabled.vogue.gradle.plugin"
8+
rules: {}
9+
suppressUntil: "2026-02-09"

mdx-models/src/main/java/com/mx/path/model/mdx/model/managed_cards/ManagedCard.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ public final class ManagedCard extends MdxBase<ManagedCard> {
1212

1313
private String accountId;
1414
private String accountType;
15+
private Boolean allowPushNotification;
1516
private String expirationOnCard;
1617
private String id;
1718
private String imageUrl;
@@ -56,6 +57,14 @@ public void setAccountType(String accountType) {
5657
this.accountType = accountType;
5758
}
5859

60+
public Boolean getAllowPushNotification() {
61+
return allowPushNotification;
62+
}
63+
64+
public void setAllowPushNotification(Boolean allowPushNotification) {
65+
this.allowPushNotification = allowPushNotification;
66+
}
67+
5968
public String getExpirationOnCard() {
6069
return expirationOnCard;
6170
}

0 commit comments

Comments
 (0)