bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
14 lines • 615 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.settlementLedgerEntryInterfaceSchema = void 0;
const zod_1 = require("zod");
const InvoiceData_zod_1 = require("./InvoiceData.zod");
exports.settlementLedgerEntryInterfaceSchema = zod_1.z.object({
invoiceData: InvoiceData_zod_1.invoiceDataInterfaceSchema.optional(),
amount: zod_1.z.number(),
code: zod_1.z.number().optional(),
invoiceId: zod_1.z.string().optional(),
timestamp: zod_1.z.string().optional(),
description: zod_1.z.string().optional()
});
//# sourceMappingURL=SettlementLedgerEntry.zod.js.map