giphy-api 0.7.0

A fully generated & opinionated API client for the Giphy API.
Documentation
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
//! The data types sent to and returned from the API client.
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

/// All of the following types are flattened into one object:
///
/// - `Image`
/// - `serde_json::Value`
///
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct LoopingAllOf {
    #[serde(flatten)]
    pub image: Image,
    /**
     * Data surrounding a version of this GIF downsized to be under 2mb.
     */
    #[serde(flatten)]
    pub value: serde_json::Value,
}

/// An object containing data for various available formats and sizes of this GIF.
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct Images {
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub downsized: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub downsized_large: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub downsized_medium: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub downsized_small: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub downsized_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_height: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_height_downsampled: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_height_small: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_height_small_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_height_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_width: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_width_downsampled: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_width_small: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_width_small_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub fixed_width_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub looping: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub original: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub original_still: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub preview: Option<LoopingAllOf>,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub preview_gif: Option<LoopingAllOf>,
}

/**
 * Type of the gif. By default, this is almost always gif
 */
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema, Default)]
pub enum Type {
    #[serde(rename = "gif")]
    #[default]
    Gif,
    #[serde(other)]
    FallthroughString,
}

impl std::fmt::Display for Type {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Type::Gif => "gif",
            Type::FallthroughString => "*",
        }
        .fmt(f)
    }
}

#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct Gif {
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub bitly_url: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub content_url: String,
    /**
     * The date this GIF was added to the GIPHY database.
     */
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        deserialize_with = "crate::utils::date_time_format::deserialize"
    )]
    pub create_datetime: Option<chrono::DateTime<chrono::Utc>>,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub embded_url: String,
    /**
     * An array of featured tags for this GIF (Note: Not available when using the Public Beta Key)
     *
     */
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "crate::utils::deserialize_null_vector::deserialize"
    )]
    pub featured_tags: Vec<String>,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub id: String,
    /**
     * An object containing data for various available formats and sizes of this GIF.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub images: Option<Images>,
    /**
     * The date this GIF was added to the GIPHY database.
     */
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        deserialize_with = "crate::utils::date_time_format::deserialize"
    )]
    pub import_datetime: Option<chrono::DateTime<chrono::Utc>>,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub rating: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub slug: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub source: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub source_post_url: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub source_tld: String,
    /**
     * An array of featured tags for this GIF (Note: Not available when using the Public Beta Key)
     *
     */
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "crate::utils::deserialize_null_vector::deserialize"
    )]
    pub tags: Vec<String>,
    /**
     * The date this GIF was added to the GIPHY database.
     */
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        deserialize_with = "crate::utils::date_time_format::deserialize"
    )]
    pub trending_datetime: Option<chrono::DateTime<chrono::Utc>>,
    /**
     * Type of the gif. By default, this is almost always gif
     */
    #[serde(default, skip_serializing_if = "Option::is_none", rename = "type")]
    pub type_: Option<Type>,
    /**
     * The date this GIF was added to the GIPHY database.
     */
    #[serde(
        default,
        skip_serializing_if = "Option::is_none",
        deserialize_with = "crate::utils::date_time_format::deserialize"
    )]
    pub update_datetime: Option<chrono::DateTime<chrono::Utc>>,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub url: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub user: Option<User>,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub username: String,
}

#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct Image {
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub frames: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub height: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize",
        rename = "mp4"
    )]
    pub mp_4: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize",
        rename = "mp4_size"
    )]
    pub mp_4_size: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub size: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub url: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub webp: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub webp_size: String,
    /**
     * The unique bit.ly URL for this GIF
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub width: String,
}

/// The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
///
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct Meta {
    /**
     * The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub msg: String,
    /**
     * The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub response_id: String,
    /**
     * The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "crate::utils::zero_i64",
        deserialize_with = "crate::utils::deserialize_null_i64::deserialize"
    )]
    pub status: i64,
}

/// The Pagination Object contains information relating to the number of total results available as well as the number of results fetched and their relative positions.
///
#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct Pagination {
    /**
     * The Pagination Object contains information relating to the number of total results available as well as the number of results fetched and their relative positions.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "crate::utils::zero_i64",
        deserialize_with = "crate::utils::deserialize_null_i64::deserialize"
    )]
    pub count: i64,
    /**
     * The Pagination Object contains information relating to the number of total results available as well as the number of results fetched and their relative positions.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "crate::utils::zero_i64",
        deserialize_with = "crate::utils::deserialize_null_i64::deserialize"
    )]
    pub offset: i64,
    /**
     * The Pagination Object contains information relating to the number of total results available as well as the number of results fetched and their relative positions.
     *
     */
    #[serde(
        default,
        skip_serializing_if = "crate::utils::zero_i64",
        deserialize_with = "crate::utils::deserialize_null_i64::deserialize"
    )]
    pub total_count: i64,
}

/// The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
#[derive(Serialize, Default, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct User {
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub avatar_url: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub banner_url: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub display_name: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub profile_url: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub twitter: String,
    /**
     * The User Object contains information about the user associated with a GIF and URLs to assets such as that user's avatar image, profile, and more.
     */
    #[serde(
        default,
        skip_serializing_if = "String::is_empty",
        deserialize_with = "crate::utils::deserialize_null_string::deserialize"
    )]
    pub username: String,
}

#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct GetGifsByResponse {
    #[serde(
        default,
        skip_serializing_if = "Vec::is_empty",
        deserialize_with = "crate::utils::deserialize_null_vector::deserialize"
    )]
    pub data: Vec<Gif>,
    /**
     * The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
     *
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub meta: Option<Meta>,
    /**
     * The Pagination Object contains information relating to the number of total results available as well as the number of results fetched and their relative positions.
     *
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub pagination: Option<Pagination>,
}

#[derive(Serialize, Deserialize, PartialEq, Debug, Clone, JsonSchema)]
pub struct RandomGifResponse {
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub data: Option<Gif>,
    /**
     * The Meta Object contains basic information regarding the request, whether it was successful, and the response given by the API.  Check `responses` to see a description of types of response codes the API might give you under different cirumstances.
     *
     */
    #[serde(default, skip_serializing_if = "Option::is_none")]
    pub meta: Option<Meta>,
}