/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

export type ORDERPICKEDUPREQUEST = {
    webhookType: string;
    orderId: string;
    orderStatus: string;
    bikerName: string;
    bikerPhone: string;
    distance: number;
    eta: number;
    orderAcceptedAt: string;
    bikerPhotoUrl: string;
    notificationId: number;
};

