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
use crate::Client;
use crate::ClientResult;
pub struct Channels {
pub client: Client,
}
impl Channels {
#[doc(hidden)]
pub fn new(client: Client) -> Self {
Channels { client }
}
/**
* Get user-authorized channel info.
*
* This function performs a `GET` to the `/channel` endpoint.
*/
pub async fn get_page(&self) -> ClientResult<crate::Response<Vec<crate::types::Channel>>> {
let url = self.client.url("/channel", None);
self.client
.get(
&url,
crate::Message {
body: None,
content_type: None,
},
)
.await
}
/**
* Get user-authorized channel info.
*
* This function performs a `GET` to the `/channel` endpoint.
*
* As opposed to `get`, this function returns all the pages of the request at once.
*/
pub async fn get_all(&self) -> ClientResult<crate::Response<Vec<crate::types::Channel>>> {
let url = self.client.url("/channel", None);
self.client
.get_all_pages(
&url,
crate::Message {
body: None,
content_type: None,
},
)
.await
}
}