Interface WebsiteOrder

interface WebsiteOrder {
    created_at?: Date;
    external_order_ref?: string;
    info?: OrderCustomer;
    items: ConversionItem[];
    order_status?: string;
    order_status_label?: string;
    payment_provider?: string;
}

Properties

created_at?: Date
external_order_ref?: string
order_status?: string
order_status_label?: string
payment_provider?: string