bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
21 lines (20 loc) • 559 B
TypeScript
import { RefundInfo } from './RefundInfo';
export interface InvoiceDataInterface {
price: number;
orderId?: string;
date?: string;
currency?: string;
transactionCurrency?: string;
payoutPercentage?: Record<string, number>;
refundInfo?: RefundInfo;
}
export declare class InvoiceData implements InvoiceDataInterface {
price: number;
orderId?: string;
date?: string;
currency?: string;
transactionCurrency?: string;
payoutPercentage?: Record<string, number>;
refundInfo?: RefundInfo;
constructor();
}