bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
15 lines • 613 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.refundParamsSchema = void 0;
const zod_1 = require("zod");
exports.refundParamsSchema = zod_1.z.object({
requesterType: zod_1.z.string().optional(),
requesterEmail: zod_1.z.string().optional(),
amount: zod_1.z.number().optional(),
currency: zod_1.z.string().optional(),
email: zod_1.z.string().optional(),
purchaserNotifyEmail: zod_1.z.string().optional(),
refundAddress: zod_1.z.string().optional(),
supportRequestEid: zod_1.z.string().optional()
});
//# sourceMappingURL=RefundParams.zod.js.map