Skip to content

Commit 94074cf

Browse files
make CardLevelLimits properties optional (#422)
* make CardLevelLimits properties optional * lint fix
1 parent 728a09c commit 94074cf

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

types/cards.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,10 @@ export interface PinStatus {
447447
}
448448

449449
export interface CardLevelLimits {
450-
dailyWithdrawal: number
451-
dailyPurchase: number
452-
monthlyWithdrawal: number
453-
monthlyPurchase: number
450+
dailyWithdrawal?: number
451+
dailyPurchase?: number
452+
monthlyWithdrawal?: number
453+
monthlyPurchase?: number
454454
}
455455

456456
export interface CardLimits {

0 commit comments

Comments
 (0)