bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
22 lines (21 loc) • 665 B
TypeScript
import { InvoiceWebhookBuyerFieldsInterface } from './InvoiceWebhookBuyerFields';
export interface InvoiceWebhook {
id?: string;
url?: string;
posData?: string;
status?: string;
price?: string;
currency?: string;
invoiceTime?: string;
currencyTime?: string;
exceptionStatus?: string;
buyerFields?: InvoiceWebhookBuyerFieldsInterface;
paymentSubtotals?: Record<string, number>;
paymentTotals?: Record<string, number>;
exchangeRates?: Record<string, Record<string, number>>;
amountPaid?: number;
orderId?: string;
transactionCurrency?: string;
inInvoiceId?: string;
inPaymentRequest?: string;
}