bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
22 lines • 855 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ledgerEntryInterfaceSchema = void 0;
const zod_1 = require("zod");
const BuyerFields_zod_1 = require("./BuyerFields.zod");
exports.ledgerEntryInterfaceSchema = zod_1.z.object({
buyerFields: BuyerFields_zod_1.buyerFieldsInterfaceSchema,
type: zod_1.z.string(),
amount: zod_1.z.number(),
code: zod_1.z.number(),
description: zod_1.z.string().optional(),
timestamp: zod_1.z.string().optional(),
txType: zod_1.z.string().optional(),
scale: zod_1.z.number().optional(),
invoiceId: zod_1.z.string(),
invoiceAmount: zod_1.z.number(),
invoiceCurrency: zod_1.z.string(),
transactionCurrency: zod_1.z.string(),
id: zod_1.z.string(),
supportRequest: zod_1.z.string().optional()
});
//# sourceMappingURL=LedgerEntry.zod.js.map