UNPKG

nammaniru_common_service

Version:

The service will contain all the functionality which is common for both shop and customer

27 lines (26 loc) 572 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const mongoose_1 = require("mongoose"); const OrderBillSchema = new mongoose_1.Schema({ ItemSubtotal: { type: Number, required: true }, DeliveryFee: { type: Number, required: true }, PlatformServiceFee: { type: Number, required: true }, RefundableDeposit: { type: Number, required: true }, FinalAmount: { type: Number, required: true } }); exports.default = OrderBillSchema;