warframe_client/models/
slam_attack_radial.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: 2.0.8
7 * Contact: tobiah@protonmail.com
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SlamAttackRadial {
16    #[serde(rename = "damage", skip_serializing_if = "Option::is_none")]
17    pub damage: Option<f32>,
18    #[serde(rename = "element", skip_serializing_if = "Option::is_none")]
19    pub element: Option<models::Element>,
20    #[serde(rename = "proc", skip_serializing_if = "Option::is_none")]
21    pub proc: Option<f32>,
22    #[serde(rename = "radius", skip_serializing_if = "Option::is_none")]
23    pub radius: Option<f32>,
24}
25
26impl SlamAttackRadial {
27    pub fn new() -> SlamAttackRadial {
28        SlamAttackRadial {
29            damage: None,
30            element: None,
31            proc: None,
32            radius: None,
33        }
34    }
35}
36