warframestat_rs/models/
sol_node.rs

1/*
2 * WarframeStat.us API
3 *
4 * Simple API for data from the game Warframe. [Parser Docs](https://wfcd.github.io/warframe-worldstate-parser/) [Items Types](https://github.com/WFCD/warframe-items/blob/master/index.d.ts) 
5 *
6 * The version of the OpenAPI document: living
7 * Contact: tobiah@protonmail.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
15pub struct SolNode {
16    #[serde(rename = "SolKey", skip_serializing_if = "Option::is_none")]
17    pub sol_key: Option<Box<crate::models::SolNodeSolKey>>,
18}
19
20impl SolNode {
21    pub fn new() -> SolNode {
22        SolNode {
23            sol_key: None,
24        }
25    }
26}
27
28