warframe_client/models/
configs_inner.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 ConfigsInner {
16    #[serde(rename = "skins", skip_serializing_if = "Option::is_none")]
17    pub skins: Option<Vec<models::ConfigsInnerSkinsInner>>,
18    #[serde(rename = "primaryColor", skip_serializing_if = "Option::is_none")]
19    pub primary_color: Option<models::ProfileColor>,
20    #[serde(rename = "syandanaColor", skip_serializing_if = "Option::is_none")]
21    pub syandana_color: Option<Box<models::ProfileColor>>,
22}
23
24impl ConfigsInner {
25    pub fn new() -> ConfigsInner {
26        ConfigsInner {
27            skins: None,
28            primary_color: None,
29            syandana_color: None,
30        }
31    }
32}
33