bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
19 lines (18 loc) • 493 B
TypeScript
import { InvoiceData } from './InvoiceData';
export interface SettlementLedgerEntryInterface {
amount: number;
code?: number;
invoiceId?: string;
timestamp?: string;
description?: string;
invoiceData?: InvoiceData;
}
export declare class SettlementLedgerEntry implements SettlementLedgerEntryInterface {
amount: number;
code?: number;
invoiceId?: string;
timestamp?: string;
description?: string;
invoiceData?: InvoiceData;
constructor();
}