@shipengine/connect-order-source-api
Version:
This is the typescript/javascript definitions for the order source api
19 lines • 748 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BrandingSchema = exports.Branding = void 0;
const tslib_1 = require("tslib");
const joi_1 = tslib_1.__importDefault(require("joi"));
const packing_slip_1 = require("./packing-slip");
/** @description The brand requested for a fulfillment */
class Branding {
/** @description Packing slip associated with the brand */
packing_slip;
/** @description Company name associated with the brand */
company_name;
}
exports.Branding = Branding;
exports.BrandingSchema = joi_1.default.object({
packing_slip: packing_slip_1.PackingSlipSchema.optional(),
company_name: joi_1.default.string().optional().empty(),
});
//# sourceMappingURL=branding.js.map