1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
use crate::request::ApiRequest;
use serde::Serialize;
#[cfg_attr(feature = "with-builder", derive(TypedBuilder))]
#[derive(Serialize, Default)]
#[serde(rename_all = "kebab-case")]
pub struct Add<'a> {
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub trickle: Option<bool>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub only_hash: Option<bool>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub wrap_with_directory: Option<bool>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub chunker: Option<&'a str>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub pin: Option<bool>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub raw_leaves: Option<bool>,
    
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub cid_version: Option<u32>,
    
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub hash: Option<&'a str>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub inline: Option<bool>,
    
    #[cfg_attr(feature = "with-builder", builder(default, setter(strip_option)))]
    pub inline_limit: Option<u32>,
}
impl<'a> ApiRequest for Add<'a> {
    const PATH: &'static str = "/add";
}