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
#[derive(Clone, Debug, Default)]
pub struct DeleteInvoiceParameters {
pub version: Option<i32>,
}
impl DeleteInvoiceParameters {
pub fn to_query_string(&self) -> String {
self.to_string()
}
}
impl From<DeleteInvoiceParameters> for String {
fn from(delete_invoice_parameters: DeleteInvoiceParameters) -> Self {
delete_invoice_parameters.to_string()
}
}
impl ToString for DeleteInvoiceParameters {
fn to_string(&self) -> String {
let mut params = Vec::new();
if let Some(version) = &self.version {
params.push(format!("version={}", version));
}
if params.is_empty() {
String::new()
} else {
format!("?{}", params.join("&"))
}
}
}