warframe/worldstate/models/items/
sentinel.rs1use serde::Deserialize;
2
3use super::Component;
4
5#[allow(clippy::struct_excessive_bools)]
6#[derive(Clone, Debug, Deserialize, PartialEq)]
7#[serde(rename_all = "camelCase")]
8pub struct Sentinel {
9 pub armor: i64,
10
11 pub build_price: i64,
12
13 pub build_quantity: i64,
14
15 pub build_time: i64,
16
17 pub components: Vec<Component>,
18
19 pub consume_on_build: bool,
20
21 pub description: String,
22
23 pub health: i64,
24
25 pub image_name: String,
26
27 pub is_prime: bool,
28
29 pub masterable: bool,
30
31 pub name: String,
32
33 pub power: i64,
34
35 pub product_category: String,
36
37 pub shield: i64,
38
39 pub skip_build_time_price: i64,
40
41 pub stamina: f64,
42
43 pub tradable: bool,
44
45 pub r#type: String,
46
47 pub unique_name: String,
48}