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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
use anyhow::Result;

use crate::Client;

pub struct TemplateFolders {
    pub client: Client,
}

impl TemplateFolders {
    #[doc(hidden)]
    pub fn new(client: Client) -> Self {
        TemplateFolders { client }
    }

    /**
     * List template folders.
     *
     * This function performs a `GET` to the `/template-folders` endpoint.
     *
     * Get all folders used to organize templates.
     *
     * **Parameters:**
     *
     * * `fields: &[String]` -- A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
     * * `exclude_fields: &[String]` -- A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
     * * `count: i64` -- The number of records to return. Default value is 10. Maximum value is 1000.
     * * `offset: i64` -- Used for [pagination](https://mailchimp.com/developer/marketing/docs/methods-parameters/#pagination), this it the number of records from a collection to skip. Default value is 0.
     */
    pub async fn get(
        &self,
        fields: &[String],
        exclude_fields: &[String],
        count: i64,
        offset: i64,
    ) -> Result<crate::types::TemplateFolders> {
        let mut query_args: Vec<(String, String)> = Default::default();
        if count > 0 {
            query_args.push(("count".to_string(), count.to_string()));
        }
        if !exclude_fields.is_empty() {
            query_args.push(("exclude_fields".to_string(), exclude_fields.join(" ")));
        }
        if !fields.is_empty() {
            query_args.push(("fields".to_string(), fields.join(" ")));
        }
        if offset > 0 {
            query_args.push(("offset".to_string(), offset.to_string()));
        }
        let query_ = serde_urlencoded::to_string(&query_args).unwrap();
        let url = format!("/template-folders?{}", query_);

        self.client.get(&url, None).await
    }

    /**
     * Add template folder.
     *
     * This function performs a `POST` to the `/template-folders` endpoint.
     *
     * Create a new template folder.
     */
    pub async fn post(&self, body: &crate::types::GalleryFolder) -> Result<crate::types::Folders> {
        let url = "/template-folders".to_string();
        self.client
            .post(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?)))
            .await
    }

    /**
     * Get template folder.
     *
     * This function performs a `GET` to the `/template-folders/{folder_id}` endpoint.
     *
     * Get information about a specific folder used to organize templates.
     *
     * **Parameters:**
     *
     * * `fields: &[String]` -- A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
     * * `exclude_fields: &[String]` -- A comma-separated list of fields to return. Reference parameters of sub-objects with dot notation.
     * * `folder_id: &str` -- The unique id for the template folder.
     */
    pub async fn get_template_folders(
        &self,
        fields: &[String],
        exclude_fields: &[String],
        folder_id: &str,
    ) -> Result<crate::types::Folders> {
        let mut query_args: Vec<(String, String)> = Default::default();
        if !exclude_fields.is_empty() {
            query_args.push(("exclude_fields".to_string(), exclude_fields.join(" ")));
        }
        if !fields.is_empty() {
            query_args.push(("fields".to_string(), fields.join(" ")));
        }
        let query_ = serde_urlencoded::to_string(&query_args).unwrap();
        let url = format!(
            "/template-folders/{}?{}",
            crate::progenitor_support::encode_path(folder_id),
            query_
        );

        self.client.get(&url, None).await
    }

    /**
     * Delete template folder.
     *
     * This function performs a `DELETE` to the `/template-folders/{folder_id}` endpoint.
     *
     * Delete a specific template folder, and mark all the templates in the folder as 'unfiled'.
     *
     * **Parameters:**
     *
     * * `folder_id: &str` -- The unique id for the template folder.
     */
    pub async fn delete(&self, folder_id: &str) -> Result<()> {
        let url = format!(
            "/template-folders/{}",
            crate::progenitor_support::encode_path(folder_id),
        );

        self.client.delete(&url, None).await
    }

    /**
     * Update template folder.
     *
     * This function performs a `PATCH` to the `/template-folders/{folder_id}` endpoint.
     *
     * Update a specific folder used to organize templates.
     *
     * **Parameters:**
     *
     * * `folder_id: &str` -- The unique id for the template folder.
     */
    pub async fn patch(
        &self,
        folder_id: &str,
        body: &crate::types::GalleryFolder,
    ) -> Result<crate::types::Folders> {
        let url = format!(
            "/template-folders/{}",
            crate::progenitor_support::encode_path(folder_id),
        );

        self.client
            .patch(&url, Some(reqwest::Body::from(serde_json::to_vec(body)?)))
            .await
    }
}