Skip to content

Commit afce7d4

Browse files
author
gosomi
committed
cancel tax free 추가
1 parent f22d8be commit afce7d4

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/bootpay.ts

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ export interface BootpayCommonResponse<T = any> {
1616
}
1717

1818
export interface BootpayCancelData {
19-
receiptId: string,
20-
price?: number,
21-
name?: string,
22-
reason?: string,
19+
receiptId: string
20+
price?: number
21+
taxFree?: number
22+
name?: string
23+
reason?: string
2324
refund?: BootpayRefundData
2425
}
2526

@@ -266,6 +267,7 @@ class BootpayRestClient extends BootpaySingleton {
266267
{
267268
receipt_id: data.receiptId,
268269
price: data.price,
270+
tax_free: data.taxFree,
269271
name: data.name,
270272
reason: data.reason,
271273
refund: data.refund

0 commit comments

Comments
 (0)