bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
35 lines (34 loc) • 845 B
TypeScript
import { BuyerFields } from './BuyerFields';
export interface LedgerEntryInterface {
type: string;
amount: number;
code: number;
description?: string;
timestamp?: string;
txType?: string;
scale?: number;
invoiceId: string;
buyerFields?: BuyerFields;
invoiceAmount: number;
invoiceCurrency: string;
transactionCurrency: string;
id: string;
supportRequest?: string;
}
export declare class LedgerEntry implements LedgerEntryInterface {
type: string;
amount: number;
code: number;
description?: string;
timestamp?: string;
txType?: string;
scale?: number;
invoiceId: string;
buyerFields?: BuyerFields;
invoiceAmount: number;
invoiceCurrency: string;
transactionCurrency: string;
id: string;
supportRequest?: string;
constructor();
}