1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use rust_decimal::Decimal;
use serde::{Deserialize, Serialize};

use crate::{Asset, AssetPrice};

/*
{
	"assetAmount": "5232866.89214283",
	"baseAmount": "523286689214283",
	"decimal": 8,
	"asset": {
		"chain": "THOR",
		"symbol": "RUNE",
		"ticker": "RUNE",
		"type": "Native",
		"network": "THORChain",
		"name": "RUNE",
		"decimal": 8,
		"isSynth": false
	},
	"amount": {
		"assetAmount": "5232866.89214283",
		"baseAmount": "523286689214283",
		"decimal": 8
	}
}
*/

#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Depth {
	#[serde(rename = "assetAmount", with = "rust_decimal::serde::str")]
	asset_amount: Decimal,

	#[serde(rename = "baseAmount", with = "rust_decimal::serde::str")]
	base_amount: Decimal,

	#[serde(serialize_with = "rust_decimal::serde::str::serialize")]
	decimal: Decimal,
	asset: Asset,
	amount: AssetPrice,
}

impl Depth {
	#[must_use]
	pub const fn get_asset_amount(&self) -> &Decimal {
		&self.asset_amount
	}

	#[must_use]
	pub const fn get_base_amount(&self) -> &Decimal {
		&self.base_amount
	}

	#[must_use]
	pub const fn get_decimal(&self) -> &Decimal {
		&self.decimal
	}

	#[must_use]
	pub const fn get_asset(&self) -> &Asset {
		&self.asset
	}

	#[must_use]
	pub const fn get_amount(&self) -> &AssetPrice {
		&self.amount
	}
}