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
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct NotificationsData {
    pub data: Notifications,
}

#[derive(Debug, Deserialize)]
pub struct Notifications {
    pub notifications: NotificationConnection,
}

#[allow(non_snake_case)]
#[derive(Debug, Deserialize)]
pub struct NotificationConnection {
    pub edges: Vec<NotificationEdge>,
    pub pageInfo: PageInfo,
    pub __typename: String,
}

#[derive(Debug, Deserialize)]
pub struct NotificationEdge {
    pub node: NotificationNode,
    pub __typename: String,
}

#[allow(non_snake_case)]
#[derive(Debug, Deserialize)]
pub struct NotificationNode {
    pub id: String,
    pub notificationId: i32,
    pub modifiedDate: i64,
    pub actioned: bool,
    pub notificationData: NotificationDataNode,
    pub __typename: String,
}

#[derive(Debug, Deserialize)]
pub struct NotificationDataNode {
    pub id: String,
    pub content: String,
    #[serde(rename = "type")]
    pub type_: String,
    pub metadata: String,
    pub __typename: String,
}

#[allow(non_snake_case)]
#[derive(Debug, Deserialize)]
pub struct PageInfo {
    pub endCursor: String,
    pub hasNextPage: bool,
    pub __typename: String,
}