eve-esi-api 0.0.4

This library provides an authentication to Eve-esi API and some endpoints to call.
Documentation
use serde::Deserialize;

use crate::{DateTime, Double, Int32, Int64};

#[derive(Deserialize, Debug, Clone, PartialEq)]
pub struct Order {
    pub duration: Int32,
    pub escrow: Option<Double>,
    pub is_buy_order: Option<bool>,
    pub is_corporation: bool,
    pub issued: DateTime,
    pub location_id: Int64,
    pub min_volume: Option<Int32>,
    pub order_id: Int64,
    pub price: Double,
    pub range: String,
    pub region_id: Int32,
    pub type_id: Int32,
    pub volume_remain: Int32,
    pub volume_total: Int32,
}