nomad_client/models/spread_target.rs
1/*
2 * Nomad
3 *
4 * Nomad OpenApi specification
5 *
6 * The version of the OpenAPI document: 0.11.0
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11
12
13
14#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
15pub struct SpreadTarget {
16 #[serde(rename = "Value", skip_serializing_if = "Option::is_none")]
17 pub value: Option<String>,
18 #[serde(rename = "Percent", skip_serializing_if = "Option::is_none")]
19 pub percent: Option<i32>,
20}
21
22impl SpreadTarget {
23 pub fn new() -> SpreadTarget {
24 SpreadTarget {
25 value: None,
26 percent: None,
27 }
28 }
29}
30
31