aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index 060401c2f..0d18e4a9b 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -502,3 +502,13 @@ export interface AcceptWithdrawalResponse {
reservePub: string;
confirmTransferUrl?: string;
}
+
+/**
+ * Details about a purchase, including refund status.
+ */
+export interface PurchaseDetails {
+ contractTerms: ContractTerms,
+ hasRefund: boolean,
+ totalRefundAmount: AmountJson,
+ totalRefundAndRefreshFees: AmountJson,
+} \ No newline at end of file