...
- Fernandez Pranno, Marco Manuel
- Franca, Helio
- Nunes de Oliveira, Henrique (Deactivated)
- Souza, Rafael
- Raphael Ferreira Gomes
- Krajewski, Piotr (Deactivated)
...
Code Block | ||
---|---|---|
| ||
export interface IWebhookCreateDelivery {
additionalDetails?: {
key: string;
value: any;
}[];
callbackUrl: string;
cart: ICart;
channel?: Platform | ReferralVendor;
deliveryMode?: DeliveryMode;
customer: ICustomer;
deliveryAddress: IUserAddress;
fireOrderInSeconds: number | null;
instructions?: string;
number: string;
orderId: string;
fees?: IPartnerFee[]; // New field
payment: IPayment;
quoteId: string;
storeId: string;
} |
...