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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use serde::Deserialize;

use super::*;

#[derive(Clone, Debug, Deserialize)]
pub struct Audiobook {
    pub authors: Vec<Author>,
    #[serde(default)]
    pub available_markets: Vec<String>,
    pub copyrights: Vec<Copyright>,
    pub description: String,
    pub html_description: String,
    pub edition: String,
    pub explicit: bool,
    pub external_urls: ExternalUrls,
    pub href: String,
    pub id: String,
    pub images: Vec<Image>,
    pub languages: Vec<String>,
    pub media_type: String,
    pub name: String,
    pub narrators: Vec<Narrator>,
    pub publisher: String,
    pub r#type: String,
    pub uri: String,
    pub total_chapters: u32,
    pub chapters: Page<SimplifiedChapter>,
}

#[derive(Clone, Debug, Deserialize)]
pub struct SimplifiedAudiobook {
    pub authors: Vec<Author>,
    #[serde(default)]
    pub available_markets: Vec<String>,
    pub copyrights: Vec<Copyright>,
    pub description: String,
    pub html_description: String,
    pub edition: String,
    pub explicit: bool,
    pub external_urls: ExternalUrls,
    pub href: String,
    pub id: String,
    pub images: Vec<Image>,
    pub languages: Vec<String>,
    pub media_type: String,
    pub name: String,
    pub narrators: Vec<Narrator>,
    pub publisher: String,
    pub r#type: String,
    pub uri: String,
    pub total_chapters: Option<u32>,
}

#[derive(Clone, Debug, Deserialize)]
pub(crate) struct Audiobooks {
    pub(crate) audiobooks: Vec<Audiobook>,
}

#[derive(Clone, Debug, Deserialize)]
pub struct Chapter {
    pub audio_preview_url: Option<String>,
    #[serde(default)]
    pub available_markets: Vec<String>,
    pub chapter_number: u32,
    pub description: String,
    pub html_description: String,
    pub duration_ms: u32,
    pub explicit: bool,
    pub external_urls: ExternalUrls,
    pub href: String,
    pub id: String,
    pub images: Vec<Image>,
    pub is_playable: Option<bool>,
    pub languages: Vec<String>,
    pub name: String,
    pub release_date: String,
    pub release_date_precision: DatePrecision,
    pub resume_point: ResumePoint,
    pub r#type: String,
    pub uri: String,
    pub restrictions: Option<Restrictions>,
    pub audiobook: SimplifiedAudiobook,
}

#[derive(Clone, Debug, Deserialize)]
pub struct SimplifiedChapter {
    pub audio_preview_url: Option<String>,
    #[serde(default)]
    pub available_markets: Vec<String>,
    pub chapter_number: u32,
    pub description: String,
    pub html_description: String,
    pub duration_ms: u32,
    pub explicit: bool,
    pub external_urls: ExternalUrls,
    pub href: String,
    pub id: String,
    pub images: Vec<Image>,
    pub is_playable: Option<bool>,
    pub languages: Vec<String>,
    pub name: String,
    pub release_date: String,
    pub release_date_precision: DatePrecision,
    pub resume_point: ResumePoint,
    pub r#type: String,
    pub uri: String,
    pub restrictions: Option<Restrictions>,
}

#[derive(Clone, Debug, Deserialize)]
pub(crate) struct Chapters {
    pub(crate) chapters: Vec<Chapter>,
}

#[derive(Clone, Debug, Deserialize)]
pub struct Author {
    pub name: String,
}

#[derive(Clone, Debug, Deserialize)]
pub struct Narrator {
    pub name: String,
}