interface Order {
    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
info?: OrderCustomer
items: ConversionItem[]
order_status?: string
order_status_label?: string
payment_provider: string