import { RequestLocationCreateOrUpdate } from './requestLocationCreateOrUpdate'; export interface RequestCustomerAddressCreateOrUpdate { status?: boolean; name: string; customer: string; operationCenter: string; addressLine1: string; addressLine2?: string; city: string; state: string; country: string; pincode: string; location: RequestLocationCreateOrUpdate; orderCutoffPeriod?: number; deliveringHoursStartTime?: string; deliveringHoursEndTime?: string; deliveryCharge?: number; }