UNPKG

@shipengine/connect-order-source-api

Version:

This is the typescript/javascript definitions for the order source api

18 lines 631 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BillToSchema = exports.BillTo = void 0; const tslib_1 = require("tslib"); const joi_1 = tslib_1.__importDefault(require("joi")); const address_1 = require("./address"); /** * @description This model represents information for who is being billed */ class BillTo extends address_1.Address { /** @description The email address of the person being billed */ email; } exports.BillTo = BillTo; exports.BillToSchema = address_1.AddressSchema.keys({ email: joi_1.default.string().optional().empty(), }); //# sourceMappingURL=bill-to.js.map