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