import { MANUAL_AVAILABLE_SERVICE, DELIVERY_STATUS } from '../delivery.interface'; import { ManualWebhookDto as IManualWebhookDto } from './manual.interface'; import { DineroObject } from '../../../utils/model'; import { Driver } from '../delivery.model'; export declare class ManualWebhookDto implements IManualWebhookDto { deliveryId: string; orderId: string; choosenService?: MANUAL_AVAILABLE_SERVICE; status: DELIVERY_STATUS; deliveryFee?: DineroObject; driver?: Driver; remark?: string; pickupRef?: string; trackingUrl?: string; }