nammaniru_common_service
Version:
The service will contain all the functionality which is common for both shop and customer
16 lines (15 loc) • 678 B
text/typescript
import { OrderBillType } from "./OrderBillType/OrderBillType"
import { OrderDeliveryAddressType } from "./OrderDeliveryAddressType/OrderDeliveryAddressType"
export type OrdersType =
{
OrderID: String,
CustomerID: String,
// OrderAreaPincode: String,
// ShopID: String | null, //will be updated when the order is accepted by the shop
OrderPlacedTimeStamp: String,
// OrderDeliveredTimeStamp: String | null,//will be updated when the order is delivered
// OrderStatus: Number,
// PaymentMode: String,
OrderBill: OrderBillType,
OrderDeliveryAddress: OrderDeliveryAddressType
}