this interface represents the information needed to create a new pending order

interface NewOrder {
    customerEmail: string;
    items: OrderItem[];
    price: number;
    type: OrderType;
}

Properties

customerEmail: string
items: OrderItem[]
price: number
type: OrderType