-
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathrssparser.klib.api
More file actions
361 lines (320 loc) · 40.5 KB
/
rssparser.klib.api
File metadata and controls
361 lines (320 loc) · 40.5 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
// Klib ABI Dump
// Targets: [iosArm64, iosSimulatorArm64, iosX64, js, macosArm64, macosX64, tvosArm64, tvosSimulatorArm64, tvosX64, wasmJs, watchosDeviceArm64, watchosSimulatorArm64, watchosX64]
// Alias: apple => [iosArm64, iosSimulatorArm64, iosX64, macosArm64, macosX64, tvosArm64, tvosSimulatorArm64, tvosX64, watchosDeviceArm64, watchosSimulatorArm64, watchosX64]
// Rendering settings:
// - Signature version: 2
// - Show manifest properties: true
// - Show declarations: true
// Library unique name: <RSS-Parser:rssparser>
final class com.prof18.rssparser.exception/HttpException : kotlin/Exception { // com.prof18.rssparser.exception/HttpException|null[0]
constructor <init>(kotlin/Int, kotlin/String?) // com.prof18.rssparser.exception/HttpException.<init>|<init>(kotlin.Int;kotlin.String?){}[0]
final val code // com.prof18.rssparser.exception/HttpException.code|{}code[0]
final fun <get-code>(): kotlin/Int // com.prof18.rssparser.exception/HttpException.code.<get-code>|<get-code>(){}[0]
final val message // com.prof18.rssparser.exception/HttpException.message|{}message[0]
final fun <get-message>(): kotlin/String? // com.prof18.rssparser.exception/HttpException.message.<get-message>|<get-message>(){}[0]
final fun component1(): kotlin/Int // com.prof18.rssparser.exception/HttpException.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.exception/HttpException.component2|component2(){}[0]
final fun copy(kotlin/Int = ..., kotlin/String? = ...): com.prof18.rssparser.exception/HttpException // com.prof18.rssparser.exception/HttpException.copy|copy(kotlin.Int;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.exception/HttpException.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.exception/HttpException.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.exception/HttpException.toString|toString(){}[0]
}
final class com.prof18.rssparser.exception/RssParsingException : kotlin/Exception { // com.prof18.rssparser.exception/RssParsingException|null[0]
constructor <init>(kotlin/String?, kotlin/Throwable?) // com.prof18.rssparser.exception/RssParsingException.<init>|<init>(kotlin.String?;kotlin.Throwable?){}[0]
final val cause // com.prof18.rssparser.exception/RssParsingException.cause|{}cause[0]
final fun <get-cause>(): kotlin/Throwable? // com.prof18.rssparser.exception/RssParsingException.cause.<get-cause>|<get-cause>(){}[0]
final val message // com.prof18.rssparser.exception/RssParsingException.message|{}message[0]
final fun <get-message>(): kotlin/String? // com.prof18.rssparser.exception/RssParsingException.message.<get-message>|<get-message>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.exception/RssParsingException.component1|component1(){}[0]
final fun component2(): kotlin/Throwable? // com.prof18.rssparser.exception/RssParsingException.component2|component2(){}[0]
final fun copy(kotlin/String? = ..., kotlin/Throwable? = ...): com.prof18.rssparser.exception/RssParsingException // com.prof18.rssparser.exception/RssParsingException.copy|copy(kotlin.String?;kotlin.Throwable?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.exception/RssParsingException.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.exception/RssParsingException.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.exception/RssParsingException.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/ItunesChannelData { // com.prof18.rssparser.model/ItunesChannelData|null[0]
constructor <init>(kotlin/String?, kotlin.collections/List<kotlin/String> = ..., kotlin/String?, kotlin/String?, kotlin/String?, kotlin.collections/List<kotlin/String>, kotlin/String?, com.prof18.rssparser.model/ItunesOwner?, kotlin/String?, kotlin/String?, kotlin/String?) // com.prof18.rssparser.model/ItunesChannelData.<init>|<init>(kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;com.prof18.rssparser.model.ItunesOwner?;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final val author // com.prof18.rssparser.model/ItunesChannelData.author|{}author[0]
final fun <get-author>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.author.<get-author>|<get-author>(){}[0]
final val categories // com.prof18.rssparser.model/ItunesChannelData.categories|{}categories[0]
final fun <get-categories>(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesChannelData.categories.<get-categories>|<get-categories>(){}[0]
final val duration // com.prof18.rssparser.model/ItunesChannelData.duration|{}duration[0]
final fun <get-duration>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.duration.<get-duration>|<get-duration>(){}[0]
final val explicit // com.prof18.rssparser.model/ItunesChannelData.explicit|{}explicit[0]
final fun <get-explicit>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.explicit.<get-explicit>|<get-explicit>(){}[0]
final val image // com.prof18.rssparser.model/ItunesChannelData.image|{}image[0]
final fun <get-image>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.image.<get-image>|<get-image>(){}[0]
final val keywords // com.prof18.rssparser.model/ItunesChannelData.keywords|{}keywords[0]
final fun <get-keywords>(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesChannelData.keywords.<get-keywords>|<get-keywords>(){}[0]
final val newsFeedUrl // com.prof18.rssparser.model/ItunesChannelData.newsFeedUrl|{}newsFeedUrl[0]
final fun <get-newsFeedUrl>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.newsFeedUrl.<get-newsFeedUrl>|<get-newsFeedUrl>(){}[0]
final val owner // com.prof18.rssparser.model/ItunesChannelData.owner|{}owner[0]
final fun <get-owner>(): com.prof18.rssparser.model/ItunesOwner? // com.prof18.rssparser.model/ItunesChannelData.owner.<get-owner>|<get-owner>(){}[0]
final val subtitle // com.prof18.rssparser.model/ItunesChannelData.subtitle|{}subtitle[0]
final fun <get-subtitle>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.subtitle.<get-subtitle>|<get-subtitle>(){}[0]
final val summary // com.prof18.rssparser.model/ItunesChannelData.summary|{}summary[0]
final fun <get-summary>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.summary.<get-summary>|<get-summary>(){}[0]
final val type // com.prof18.rssparser.model/ItunesChannelData.type|{}type[0]
final fun <get-type>(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.type.<get-type>|<get-type>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component1|component1(){}[0]
final fun component10(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component10|component10(){}[0]
final fun component11(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component11|component11(){}[0]
final fun component2(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesChannelData.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component3|component3(){}[0]
final fun component4(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component4|component4(){}[0]
final fun component5(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component5|component5(){}[0]
final fun component6(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesChannelData.component6|component6(){}[0]
final fun component7(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component7|component7(){}[0]
final fun component8(): com.prof18.rssparser.model/ItunesOwner? // com.prof18.rssparser.model/ItunesChannelData.component8|component8(){}[0]
final fun component9(): kotlin/String? // com.prof18.rssparser.model/ItunesChannelData.component9|component9(){}[0]
final fun copy(kotlin/String? = ..., kotlin.collections/List<kotlin/String> = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin.collections/List<kotlin/String> = ..., kotlin/String? = ..., com.prof18.rssparser.model/ItunesOwner? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ...): com.prof18.rssparser.model/ItunesChannelData // com.prof18.rssparser.model/ItunesChannelData.copy|copy(kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;com.prof18.rssparser.model.ItunesOwner?;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/ItunesChannelData.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/ItunesChannelData.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/ItunesChannelData.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/ItunesItemData { // com.prof18.rssparser.model/ItunesItemData|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin.collections/List<kotlin/String>, kotlin/String?, kotlin/String?, kotlin/String?) // com.prof18.rssparser.model/ItunesItemData.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final val author // com.prof18.rssparser.model/ItunesItemData.author|{}author[0]
final fun <get-author>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.author.<get-author>|<get-author>(){}[0]
final val duration // com.prof18.rssparser.model/ItunesItemData.duration|{}duration[0]
final fun <get-duration>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.duration.<get-duration>|<get-duration>(){}[0]
final val episode // com.prof18.rssparser.model/ItunesItemData.episode|{}episode[0]
final fun <get-episode>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.episode.<get-episode>|<get-episode>(){}[0]
final val episodeType // com.prof18.rssparser.model/ItunesItemData.episodeType|{}episodeType[0]
final fun <get-episodeType>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.episodeType.<get-episodeType>|<get-episodeType>(){}[0]
final val explicit // com.prof18.rssparser.model/ItunesItemData.explicit|{}explicit[0]
final fun <get-explicit>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.explicit.<get-explicit>|<get-explicit>(){}[0]
final val image // com.prof18.rssparser.model/ItunesItemData.image|{}image[0]
final fun <get-image>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.image.<get-image>|<get-image>(){}[0]
final val keywords // com.prof18.rssparser.model/ItunesItemData.keywords|{}keywords[0]
final fun <get-keywords>(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesItemData.keywords.<get-keywords>|<get-keywords>(){}[0]
final val season // com.prof18.rssparser.model/ItunesItemData.season|{}season[0]
final fun <get-season>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.season.<get-season>|<get-season>(){}[0]
final val subtitle // com.prof18.rssparser.model/ItunesItemData.subtitle|{}subtitle[0]
final fun <get-subtitle>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.subtitle.<get-subtitle>|<get-subtitle>(){}[0]
final val summary // com.prof18.rssparser.model/ItunesItemData.summary|{}summary[0]
final fun <get-summary>(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.summary.<get-summary>|<get-summary>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component1|component1(){}[0]
final fun component10(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component10|component10(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component3|component3(){}[0]
final fun component4(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component4|component4(){}[0]
final fun component5(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component5|component5(){}[0]
final fun component6(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component6|component6(){}[0]
final fun component7(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/ItunesItemData.component7|component7(){}[0]
final fun component8(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component8|component8(){}[0]
final fun component9(): kotlin/String? // com.prof18.rssparser.model/ItunesItemData.component9|component9(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin.collections/List<kotlin/String> = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ...): com.prof18.rssparser.model/ItunesItemData // com.prof18.rssparser.model/ItunesItemData.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/ItunesItemData.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/ItunesItemData.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/ItunesItemData.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/ItunesOwner { // com.prof18.rssparser.model/ItunesOwner|null[0]
constructor <init>(kotlin/String?, kotlin/String?) // com.prof18.rssparser.model/ItunesOwner.<init>|<init>(kotlin.String?;kotlin.String?){}[0]
final val email // com.prof18.rssparser.model/ItunesOwner.email|{}email[0]
final fun <get-email>(): kotlin/String? // com.prof18.rssparser.model/ItunesOwner.email.<get-email>|<get-email>(){}[0]
final val name // com.prof18.rssparser.model/ItunesOwner.name|{}name[0]
final fun <get-name>(): kotlin/String? // com.prof18.rssparser.model/ItunesOwner.name.<get-name>|<get-name>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/ItunesOwner.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/ItunesOwner.component2|component2(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ...): com.prof18.rssparser.model/ItunesOwner // com.prof18.rssparser.model/ItunesOwner.copy|copy(kotlin.String?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/ItunesOwner.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/ItunesOwner.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/ItunesOwner.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/RawEnclosure { // com.prof18.rssparser.model/RawEnclosure|null[0]
constructor <init>(kotlin/String?, kotlin/Long?, kotlin/String?) // com.prof18.rssparser.model/RawEnclosure.<init>|<init>(kotlin.String?;kotlin.Long?;kotlin.String?){}[0]
final val length // com.prof18.rssparser.model/RawEnclosure.length|{}length[0]
final fun <get-length>(): kotlin/Long? // com.prof18.rssparser.model/RawEnclosure.length.<get-length>|<get-length>(){}[0]
final val type // com.prof18.rssparser.model/RawEnclosure.type|{}type[0]
final fun <get-type>(): kotlin/String? // com.prof18.rssparser.model/RawEnclosure.type.<get-type>|<get-type>(){}[0]
final val url // com.prof18.rssparser.model/RawEnclosure.url|{}url[0]
final fun <get-url>(): kotlin/String? // com.prof18.rssparser.model/RawEnclosure.url.<get-url>|<get-url>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/RawEnclosure.component1|component1(){}[0]
final fun component2(): kotlin/Long? // com.prof18.rssparser.model/RawEnclosure.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/RawEnclosure.component3|component3(){}[0]
final fun copy(kotlin/String? = ..., kotlin/Long? = ..., kotlin/String? = ...): com.prof18.rssparser.model/RawEnclosure // com.prof18.rssparser.model/RawEnclosure.copy|copy(kotlin.String?;kotlin.Long?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/RawEnclosure.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/RawEnclosure.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/RawEnclosure.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/RawMediaContent { // com.prof18.rssparser.model/RawMediaContent|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?) // com.prof18.rssparser.model/RawMediaContent.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final val medium // com.prof18.rssparser.model/RawMediaContent.medium|{}medium[0]
final fun <get-medium>(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.medium.<get-medium>|<get-medium>(){}[0]
final val type // com.prof18.rssparser.model/RawMediaContent.type|{}type[0]
final fun <get-type>(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.type.<get-type>|<get-type>(){}[0]
final val url // com.prof18.rssparser.model/RawMediaContent.url|{}url[0]
final fun <get-url>(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.url.<get-url>|<get-url>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/RawMediaContent.component3|component3(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ...): com.prof18.rssparser.model/RawMediaContent // com.prof18.rssparser.model/RawMediaContent.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/RawMediaContent.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/RawMediaContent.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/RawMediaContent.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/RssChannel { // com.prof18.rssparser.model/RssChannel|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?, com.prof18.rssparser.model/RssImage?, kotlin/String?, kotlin/String?, kotlin.collections/List<com.prof18.rssparser.model/RssItem>, com.prof18.rssparser.model/ItunesChannelData?, com.prof18.rssparser.model/YoutubeChannelData?) // com.prof18.rssparser.model/RssChannel.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?;com.prof18.rssparser.model.RssImage?;kotlin.String?;kotlin.String?;kotlin.collections.List<com.prof18.rssparser.model.RssItem>;com.prof18.rssparser.model.ItunesChannelData?;com.prof18.rssparser.model.YoutubeChannelData?){}[0]
final val description // com.prof18.rssparser.model/RssChannel.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.prof18.rssparser.model/RssChannel.description.<get-description>|<get-description>(){}[0]
final val image // com.prof18.rssparser.model/RssChannel.image|{}image[0]
final fun <get-image>(): com.prof18.rssparser.model/RssImage? // com.prof18.rssparser.model/RssChannel.image.<get-image>|<get-image>(){}[0]
final val items // com.prof18.rssparser.model/RssChannel.items|{}items[0]
final fun <get-items>(): kotlin.collections/List<com.prof18.rssparser.model/RssItem> // com.prof18.rssparser.model/RssChannel.items.<get-items>|<get-items>(){}[0]
final val itunesChannelData // com.prof18.rssparser.model/RssChannel.itunesChannelData|{}itunesChannelData[0]
final fun <get-itunesChannelData>(): com.prof18.rssparser.model/ItunesChannelData? // com.prof18.rssparser.model/RssChannel.itunesChannelData.<get-itunesChannelData>|<get-itunesChannelData>(){}[0]
final val lastBuildDate // com.prof18.rssparser.model/RssChannel.lastBuildDate|{}lastBuildDate[0]
final fun <get-lastBuildDate>(): kotlin/String? // com.prof18.rssparser.model/RssChannel.lastBuildDate.<get-lastBuildDate>|<get-lastBuildDate>(){}[0]
final val link // com.prof18.rssparser.model/RssChannel.link|{}link[0]
final fun <get-link>(): kotlin/String? // com.prof18.rssparser.model/RssChannel.link.<get-link>|<get-link>(){}[0]
final val title // com.prof18.rssparser.model/RssChannel.title|{}title[0]
final fun <get-title>(): kotlin/String? // com.prof18.rssparser.model/RssChannel.title.<get-title>|<get-title>(){}[0]
final val updatePeriod // com.prof18.rssparser.model/RssChannel.updatePeriod|{}updatePeriod[0]
final fun <get-updatePeriod>(): kotlin/String? // com.prof18.rssparser.model/RssChannel.updatePeriod.<get-updatePeriod>|<get-updatePeriod>(){}[0]
final val youtubeChannelData // com.prof18.rssparser.model/RssChannel.youtubeChannelData|{}youtubeChannelData[0]
final fun <get-youtubeChannelData>(): com.prof18.rssparser.model/YoutubeChannelData? // com.prof18.rssparser.model/RssChannel.youtubeChannelData.<get-youtubeChannelData>|<get-youtubeChannelData>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/RssChannel.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/RssChannel.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/RssChannel.component3|component3(){}[0]
final fun component4(): com.prof18.rssparser.model/RssImage? // com.prof18.rssparser.model/RssChannel.component4|component4(){}[0]
final fun component5(): kotlin/String? // com.prof18.rssparser.model/RssChannel.component5|component5(){}[0]
final fun component6(): kotlin/String? // com.prof18.rssparser.model/RssChannel.component6|component6(){}[0]
final fun component7(): kotlin.collections/List<com.prof18.rssparser.model/RssItem> // com.prof18.rssparser.model/RssChannel.component7|component7(){}[0]
final fun component8(): com.prof18.rssparser.model/ItunesChannelData? // com.prof18.rssparser.model/RssChannel.component8|component8(){}[0]
final fun component9(): com.prof18.rssparser.model/YoutubeChannelData? // com.prof18.rssparser.model/RssChannel.component9|component9(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., com.prof18.rssparser.model/RssImage? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin.collections/List<com.prof18.rssparser.model/RssItem> = ..., com.prof18.rssparser.model/ItunesChannelData? = ..., com.prof18.rssparser.model/YoutubeChannelData? = ...): com.prof18.rssparser.model/RssChannel // com.prof18.rssparser.model/RssChannel.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?;com.prof18.rssparser.model.RssImage?;kotlin.String?;kotlin.String?;kotlin.collections.List<com.prof18.rssparser.model.RssItem>;com.prof18.rssparser.model.ItunesChannelData?;com.prof18.rssparser.model.YoutubeChannelData?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/RssChannel.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/RssChannel.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/RssChannel.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/RssImage { // com.prof18.rssparser.model/RssImage|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?) // com.prof18.rssparser.model/RssImage.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final val description // com.prof18.rssparser.model/RssImage.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.prof18.rssparser.model/RssImage.description.<get-description>|<get-description>(){}[0]
final val link // com.prof18.rssparser.model/RssImage.link|{}link[0]
final fun <get-link>(): kotlin/String? // com.prof18.rssparser.model/RssImage.link.<get-link>|<get-link>(){}[0]
final val title // com.prof18.rssparser.model/RssImage.title|{}title[0]
final fun <get-title>(): kotlin/String? // com.prof18.rssparser.model/RssImage.title.<get-title>|<get-title>(){}[0]
final val url // com.prof18.rssparser.model/RssImage.url|{}url[0]
final fun <get-url>(): kotlin/String? // com.prof18.rssparser.model/RssImage.url.<get-url>|<get-url>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/RssImage.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/RssImage.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/RssImage.component3|component3(){}[0]
final fun component4(): kotlin/String? // com.prof18.rssparser.model/RssImage.component4|component4(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ...): com.prof18.rssparser.model/RssImage // com.prof18.rssparser.model/RssImage.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/RssImage.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/RssImage.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/RssImage.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/RssItem { // com.prof18.rssparser.model/RssItem|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin.collections/List<kotlin/String>, com.prof18.rssparser.model/ItunesItemData?, kotlin/String?, com.prof18.rssparser.model/YoutubeItemData?, com.prof18.rssparser.model/RawEnclosure?, com.prof18.rssparser.model/RawMediaContent? = ...) // com.prof18.rssparser.model/RssItem.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;com.prof18.rssparser.model.ItunesItemData?;kotlin.String?;com.prof18.rssparser.model.YoutubeItemData?;com.prof18.rssparser.model.RawEnclosure?;com.prof18.rssparser.model.RawMediaContent?){}[0]
final val audio // com.prof18.rssparser.model/RssItem.audio|{}audio[0]
final fun <get-audio>(): kotlin/String? // com.prof18.rssparser.model/RssItem.audio.<get-audio>|<get-audio>(){}[0]
final val author // com.prof18.rssparser.model/RssItem.author|{}author[0]
final fun <get-author>(): kotlin/String? // com.prof18.rssparser.model/RssItem.author.<get-author>|<get-author>(){}[0]
final val categories // com.prof18.rssparser.model/RssItem.categories|{}categories[0]
final fun <get-categories>(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/RssItem.categories.<get-categories>|<get-categories>(){}[0]
final val commentsUrl // com.prof18.rssparser.model/RssItem.commentsUrl|{}commentsUrl[0]
final fun <get-commentsUrl>(): kotlin/String? // com.prof18.rssparser.model/RssItem.commentsUrl.<get-commentsUrl>|<get-commentsUrl>(){}[0]
final val content // com.prof18.rssparser.model/RssItem.content|{}content[0]
final fun <get-content>(): kotlin/String? // com.prof18.rssparser.model/RssItem.content.<get-content>|<get-content>(){}[0]
final val description // com.prof18.rssparser.model/RssItem.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.prof18.rssparser.model/RssItem.description.<get-description>|<get-description>(){}[0]
final val guid // com.prof18.rssparser.model/RssItem.guid|{}guid[0]
final fun <get-guid>(): kotlin/String? // com.prof18.rssparser.model/RssItem.guid.<get-guid>|<get-guid>(){}[0]
final val image // com.prof18.rssparser.model/RssItem.image|{}image[0]
final fun <get-image>(): kotlin/String? // com.prof18.rssparser.model/RssItem.image.<get-image>|<get-image>(){}[0]
final val itunesItemData // com.prof18.rssparser.model/RssItem.itunesItemData|{}itunesItemData[0]
final fun <get-itunesItemData>(): com.prof18.rssparser.model/ItunesItemData? // com.prof18.rssparser.model/RssItem.itunesItemData.<get-itunesItemData>|<get-itunesItemData>(){}[0]
final val link // com.prof18.rssparser.model/RssItem.link|{}link[0]
final fun <get-link>(): kotlin/String? // com.prof18.rssparser.model/RssItem.link.<get-link>|<get-link>(){}[0]
final val pubDate // com.prof18.rssparser.model/RssItem.pubDate|{}pubDate[0]
final fun <get-pubDate>(): kotlin/String? // com.prof18.rssparser.model/RssItem.pubDate.<get-pubDate>|<get-pubDate>(){}[0]
final val rawEnclosure // com.prof18.rssparser.model/RssItem.rawEnclosure|{}rawEnclosure[0]
final fun <get-rawEnclosure>(): com.prof18.rssparser.model/RawEnclosure? // com.prof18.rssparser.model/RssItem.rawEnclosure.<get-rawEnclosure>|<get-rawEnclosure>(){}[0]
final val rawMediaContent // com.prof18.rssparser.model/RssItem.rawMediaContent|{}rawMediaContent[0]
final fun <get-rawMediaContent>(): com.prof18.rssparser.model/RawMediaContent? // com.prof18.rssparser.model/RssItem.rawMediaContent.<get-rawMediaContent>|<get-rawMediaContent>(){}[0]
final val sourceName // com.prof18.rssparser.model/RssItem.sourceName|{}sourceName[0]
final fun <get-sourceName>(): kotlin/String? // com.prof18.rssparser.model/RssItem.sourceName.<get-sourceName>|<get-sourceName>(){}[0]
final val sourceUrl // com.prof18.rssparser.model/RssItem.sourceUrl|{}sourceUrl[0]
final fun <get-sourceUrl>(): kotlin/String? // com.prof18.rssparser.model/RssItem.sourceUrl.<get-sourceUrl>|<get-sourceUrl>(){}[0]
final val title // com.prof18.rssparser.model/RssItem.title|{}title[0]
final fun <get-title>(): kotlin/String? // com.prof18.rssparser.model/RssItem.title.<get-title>|<get-title>(){}[0]
final val video // com.prof18.rssparser.model/RssItem.video|{}video[0]
final fun <get-video>(): kotlin/String? // com.prof18.rssparser.model/RssItem.video.<get-video>|<get-video>(){}[0]
final val youtubeItemData // com.prof18.rssparser.model/RssItem.youtubeItemData|{}youtubeItemData[0]
final fun <get-youtubeItemData>(): com.prof18.rssparser.model/YoutubeItemData? // com.prof18.rssparser.model/RssItem.youtubeItemData.<get-youtubeItemData>|<get-youtubeItemData>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/RssItem.component1|component1(){}[0]
final fun component10(): kotlin/String? // com.prof18.rssparser.model/RssItem.component10|component10(){}[0]
final fun component11(): kotlin/String? // com.prof18.rssparser.model/RssItem.component11|component11(){}[0]
final fun component12(): kotlin/String? // com.prof18.rssparser.model/RssItem.component12|component12(){}[0]
final fun component13(): kotlin.collections/List<kotlin/String> // com.prof18.rssparser.model/RssItem.component13|component13(){}[0]
final fun component14(): com.prof18.rssparser.model/ItunesItemData? // com.prof18.rssparser.model/RssItem.component14|component14(){}[0]
final fun component15(): kotlin/String? // com.prof18.rssparser.model/RssItem.component15|component15(){}[0]
final fun component16(): com.prof18.rssparser.model/YoutubeItemData? // com.prof18.rssparser.model/RssItem.component16|component16(){}[0]
final fun component17(): com.prof18.rssparser.model/RawEnclosure? // com.prof18.rssparser.model/RssItem.component17|component17(){}[0]
final fun component18(): com.prof18.rssparser.model/RawMediaContent? // com.prof18.rssparser.model/RssItem.component18|component18(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/RssItem.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/RssItem.component3|component3(){}[0]
final fun component4(): kotlin/String? // com.prof18.rssparser.model/RssItem.component4|component4(){}[0]
final fun component5(): kotlin/String? // com.prof18.rssparser.model/RssItem.component5|component5(){}[0]
final fun component6(): kotlin/String? // com.prof18.rssparser.model/RssItem.component6|component6(){}[0]
final fun component7(): kotlin/String? // com.prof18.rssparser.model/RssItem.component7|component7(){}[0]
final fun component8(): kotlin/String? // com.prof18.rssparser.model/RssItem.component8|component8(){}[0]
final fun component9(): kotlin/String? // com.prof18.rssparser.model/RssItem.component9|component9(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin.collections/List<kotlin/String> = ..., com.prof18.rssparser.model/ItunesItemData? = ..., kotlin/String? = ..., com.prof18.rssparser.model/YoutubeItemData? = ..., com.prof18.rssparser.model/RawEnclosure? = ..., com.prof18.rssparser.model/RawMediaContent? = ...): com.prof18.rssparser.model/RssItem // com.prof18.rssparser.model/RssItem.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.collections.List<kotlin.String>;com.prof18.rssparser.model.ItunesItemData?;kotlin.String?;com.prof18.rssparser.model.YoutubeItemData?;com.prof18.rssparser.model.RawEnclosure?;com.prof18.rssparser.model.RawMediaContent?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/RssItem.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/RssItem.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/RssItem.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/YoutubeChannelData { // com.prof18.rssparser.model/YoutubeChannelData|null[0]
constructor <init>(kotlin/String?) // com.prof18.rssparser.model/YoutubeChannelData.<init>|<init>(kotlin.String?){}[0]
final val channelId // com.prof18.rssparser.model/YoutubeChannelData.channelId|{}channelId[0]
final fun <get-channelId>(): kotlin/String? // com.prof18.rssparser.model/YoutubeChannelData.channelId.<get-channelId>|<get-channelId>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/YoutubeChannelData.component1|component1(){}[0]
final fun copy(kotlin/String? = ...): com.prof18.rssparser.model/YoutubeChannelData // com.prof18.rssparser.model/YoutubeChannelData.copy|copy(kotlin.String?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/YoutubeChannelData.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/YoutubeChannelData.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/YoutubeChannelData.toString|toString(){}[0]
}
final class com.prof18.rssparser.model/YoutubeItemData { // com.prof18.rssparser.model/YoutubeItemData|null[0]
constructor <init>(kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/String?, kotlin/Int?, kotlin/Int?) // com.prof18.rssparser.model/YoutubeItemData.<init>|<init>(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.Int?;kotlin.Int?){}[0]
final val description // com.prof18.rssparser.model/YoutubeItemData.description|{}description[0]
final fun <get-description>(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.description.<get-description>|<get-description>(){}[0]
final val likesCount // com.prof18.rssparser.model/YoutubeItemData.likesCount|{}likesCount[0]
final fun <get-likesCount>(): kotlin/Int? // com.prof18.rssparser.model/YoutubeItemData.likesCount.<get-likesCount>|<get-likesCount>(){}[0]
final val thumbnailUrl // com.prof18.rssparser.model/YoutubeItemData.thumbnailUrl|{}thumbnailUrl[0]
final fun <get-thumbnailUrl>(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.thumbnailUrl.<get-thumbnailUrl>|<get-thumbnailUrl>(){}[0]
final val title // com.prof18.rssparser.model/YoutubeItemData.title|{}title[0]
final fun <get-title>(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.title.<get-title>|<get-title>(){}[0]
final val videoId // com.prof18.rssparser.model/YoutubeItemData.videoId|{}videoId[0]
final fun <get-videoId>(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.videoId.<get-videoId>|<get-videoId>(){}[0]
final val videoUrl // com.prof18.rssparser.model/YoutubeItemData.videoUrl|{}videoUrl[0]
final fun <get-videoUrl>(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.videoUrl.<get-videoUrl>|<get-videoUrl>(){}[0]
final val viewsCount // com.prof18.rssparser.model/YoutubeItemData.viewsCount|{}viewsCount[0]
final fun <get-viewsCount>(): kotlin/Int? // com.prof18.rssparser.model/YoutubeItemData.viewsCount.<get-viewsCount>|<get-viewsCount>(){}[0]
final fun component1(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.component1|component1(){}[0]
final fun component2(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.component2|component2(){}[0]
final fun component3(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.component3|component3(){}[0]
final fun component4(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.component4|component4(){}[0]
final fun component5(): kotlin/String? // com.prof18.rssparser.model/YoutubeItemData.component5|component5(){}[0]
final fun component6(): kotlin/Int? // com.prof18.rssparser.model/YoutubeItemData.component6|component6(){}[0]
final fun component7(): kotlin/Int? // com.prof18.rssparser.model/YoutubeItemData.component7|component7(){}[0]
final fun copy(kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/String? = ..., kotlin/Int? = ..., kotlin/Int? = ...): com.prof18.rssparser.model/YoutubeItemData // com.prof18.rssparser.model/YoutubeItemData.copy|copy(kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.String?;kotlin.Int?;kotlin.Int?){}[0]
final fun equals(kotlin/Any?): kotlin/Boolean // com.prof18.rssparser.model/YoutubeItemData.equals|equals(kotlin.Any?){}[0]
final fun hashCode(): kotlin/Int // com.prof18.rssparser.model/YoutubeItemData.hashCode|hashCode(){}[0]
final fun toString(): kotlin/String // com.prof18.rssparser.model/YoutubeItemData.toString|toString(){}[0]
}
final class com.prof18.rssparser/RssParser { // com.prof18.rssparser/RssParser|null[0]
final suspend fun getRssChannel(kotlin/String): com.prof18.rssparser.model/RssChannel // com.prof18.rssparser/RssParser.getRssChannel|getRssChannel(kotlin.String){}[0]
final suspend fun parse(kotlin/String): com.prof18.rssparser.model/RssChannel // com.prof18.rssparser/RssParser.parse|parse(kotlin.String){}[0]
}
final class com.prof18.rssparser/RssParserBuilder : com.prof18.rssparser/RssParser.Builder { // com.prof18.rssparser/RssParserBuilder|null[0]
final fun build(): com.prof18.rssparser/RssParser // com.prof18.rssparser/RssParserBuilder.build|build(){}[0]
// Targets: [apple]
constructor <init>(platform.Foundation/NSURLSession = ...) // com.prof18.rssparser/RssParserBuilder.<init>|<init>(platform.Foundation.NSURLSession){}[0]
// Targets: [js, wasmJs]
constructor <init>(io.ktor.client/HttpClient = ...) // com.prof18.rssparser/RssParserBuilder.<init>|<init>(io.ktor.client.HttpClient){}[0]
}
final fun com.prof18.rssparser/RssParser(): com.prof18.rssparser/RssParser // com.prof18.rssparser/RssParser|RssParser(){}[0]