bitpay-sdk
Version:
Complete version of the NodeJS library for the new cryptographically secure BitPay API
15 lines • 639 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.payoutRecipientInterfaceSchema = void 0;
const zod_1 = require("zod");
exports.payoutRecipientInterfaceSchema = zod_1.z.object({
email: zod_1.z.string().optional().nullable(),
label: zod_1.z.string().optional().nullable(),
notificationURL: zod_1.z.string().optional().nullable(),
status: zod_1.z.string().optional(),
id: zod_1.z.string().optional(),
shopperId: zod_1.z.string().nullable().optional(),
token: zod_1.z.string().optional(),
guid: zod_1.z.string().optional()
});
//# sourceMappingURL=PayoutRecipient.zod.js.map