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
use std::rc::Rc;
use std::borrow::Borrow;
#[allow(unused_imports)]
use std::option::Option;
use hyper;
use serde_json;
use futures::Future;
use super::{Error, configuration};
use super::request as __internal_request;
pub struct SavedQueriesApiClient<C: hyper::client::Connect> {
configuration: Rc<configuration::Configuration<C>>,
}
impl<C: hyper::client::Connect> SavedQueriesApiClient<C> {
pub fn new(configuration: Rc<configuration::Configuration<C>>) -> SavedQueriesApiClient<C> {
SavedQueriesApiClient {
configuration,
}
}
}
pub trait SavedQueriesApi {
fn delete_saved_query_using_delete(&self, updateable_query_id: i64) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>>;
fn get_saved_queries_for_app_using_get(&self, app_id: i64) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>>;
fn save_query_using_post(&self, saved_query_dto: crate::models::SavedQuery) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>>;
fn save_query_using_put(&self, updateable_query_id: i64, saved_query_dto: crate::models::SavedQuery) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>>;
}
impl<C: hyper::client::Connect>SavedQueriesApi for SavedQueriesApiClient<C> {
fn delete_saved_query_using_delete(&self, updateable_query_id: i64) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>> {
let mut req = __internal_request::Request::new(hyper::Method::Delete, "/users-web/api/v3/savedQueries/{updateableQueryId}".to_string())
.with_auth(__internal_request::Auth::ApiKey(__internal_request::ApiKey{
in_header: true,
in_query: false,
param_name: "Authorization".to_owned(),
}))
;
req = req.with_path_param("updateableQueryId".to_string(), updateable_query_id.to_string());
req.execute(self.configuration.borrow())
}
fn get_saved_queries_for_app_using_get(&self, app_id: i64) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>> {
let mut req = __internal_request::Request::new(hyper::Method::Get, "/users-web/api/v3/apps/{appId}/savedQueries".to_string())
.with_auth(__internal_request::Auth::ApiKey(__internal_request::ApiKey{
in_header: true,
in_query: false,
param_name: "Authorization".to_owned(),
}))
;
req = req.with_path_param("appId".to_string(), app_id.to_string());
req.execute(self.configuration.borrow())
}
fn save_query_using_post(&self, saved_query_dto: crate::models::SavedQuery) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>> {
let mut req = __internal_request::Request::new(hyper::Method::Post, "/users-web/api/v3/savedQueries".to_string())
.with_auth(__internal_request::Auth::ApiKey(__internal_request::ApiKey{
in_header: true,
in_query: false,
param_name: "Authorization".to_owned(),
}))
;
req = req.with_body_param(saved_query_dto);
req.execute(self.configuration.borrow())
}
fn save_query_using_put(&self, updateable_query_id: i64, saved_query_dto: crate::models::SavedQuery) -> Box<dyn Future<Item = crate::models::GenericApiResponse, Error = Error<serde_json::Value>>> {
let mut req = __internal_request::Request::new(hyper::Method::Put, "/users-web/api/v3/savedQueries/{updateableQueryId}".to_string())
.with_auth(__internal_request::Auth::ApiKey(__internal_request::ApiKey{
in_header: true,
in_query: false,
param_name: "Authorization".to_owned(),
}))
;
req = req.with_path_param("updateableQueryId".to_string(), updateable_query_id.to_string());
req = req.with_body_param(saved_query_dto);
req.execute(self.configuration.borrow())
}
}