use serde::Deserialize;
use crate::http_api_v3::data::depth_element::DepthElement;
#[derive(Debug, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Response {
pub last_update_id: i64,
pub bids: Vec<DepthElement>,
pub asks: Vec<DepthElement>,
}