import { ObjectId } from 'mongodb'; import { BaseModel } from './baseModel'; import { Customer } from './customer'; import { Location } from './location'; import { OperationCenter } from './operationCenter'; export interface CustomerAddress extends BaseModel { status: boolean; name: string; customer: Customer | ObjectId; operationCenter: OperationCenter | ObjectId; addressLine1: string; addressLine2?: string; city: string; state: string; country: string; pincode: string; location: Location; orderCutoffPeriod?: number; deliveringHoursStartTime?: string; deliveringHoursEndTime?: string; deliveryCharge?: number; account?: string; }