import { DineroObject } from '~backend/utils/model'; import { DELIVERY_STATUS, Driver, MANUAL_AVAILABLE_SERVICE } from '../delivery.interface'; /** * Driver interface for manual update driver */ export interface ManualWebhookDto { deliveryId: string; orderId: string; choosenService?: MANUAL_AVAILABLE_SERVICE; status: DELIVERY_STATUS; deliveryFee?: DineroObject; driver?: Driver; remark?: string; pickupRef?: string; trackingUrl?: string; }