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
use anyhow::Result;
use crate::Client;
pub struct FacebookAds {
pub client: Client,
}
impl FacebookAds {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
FacebookAds { client }
}
pub async fn get_all(
&self,
fields: &[String],
exclude_fields: &[String],
count: i64,
offset: i64,
sort_field: crate::types::GetAllFacebookAdsSortField,
sort_dir: crate::types::SortDir,
) -> Result<crate::types::GetAllFacebookAdsResponse> {
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()));
}
if !sort_dir.to_string().is_empty() {
query_args.push(("sort_dir".to_string(), sort_dir.to_string()));
}
if !sort_field.to_string().is_empty() {
query_args.push(("sort_field".to_string(), sort_field.to_string()));
}
let query_ = serde_urlencoded::to_string(&query_args).unwrap();
let url = format!("/facebook-ads?{}", query_);
self.client.get(&url, None).await
}
pub async fn get(
&self,
fields: &[String],
outreach_id: &str,
exclude_fields: &[String],
) -> Result<crate::types::FacebookAdsAllOf> {
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!(
"/facebook-ads/{}?{}",
crate::progenitor_support::encode_path(outreach_id),
query_
);
self.client.get(&url, None).await
}
}