wolt 0.1.0

A reqwest/tokio based api wrapper for Wolt
Documentation
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct EstimateBounds {
    pub max: Option<i32>,
    pub mean: i32,
    pub min: Option<i32>,
}

#[derive(Deserialize, Debug)]
pub struct Estimates {
    pub delivery: EstimateBounds,
    pub pickup: EstimateBounds,
    pub preparation: EstimateBounds,
    pub total: EstimateBounds,
}

#[derive(Deserialize, Debug)]
pub struct EstimateResults {
    pub results: Option<Estimates>,
    pub status: String,
}