warframestat_rs/models/event_progress_steps.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 EventProgressSteps {
16 /// Steps in the progress to completion
17 #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
18 pub _type: Option<String>,
19 /// Percent progress to completion
20 #[serde(rename = "progressAmt", skip_serializing_if = "Option::is_none")]
21 pub progress_amt: Option<f32>,
22}
23
24impl EventProgressSteps {
25 pub fn new() -> EventProgressSteps {
26 EventProgressSteps {
27 _type: None,
28 progress_amt: None,
29 }
30 }
31}
32
33