helpscout 0.0.4

Bindings for the HelpScout API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[derive(Debug, Clone, Deserialize)]
pub struct Collection<T> {
    pub page: i32,
    pub pages: i32,
    pub count: i32,
    pub items: Vec<T>,
}

#[derive(Debug, Clone, Deserialize)]
pub struct Item<T> {
    pub item: T,
}