GiphyClient 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/Gemfile.lock +69 -0
- data/GiphyClient.gemspec +44 -0
- data/README.md +152 -0
- data/Rakefile +7 -0
- data/config.json +18 -0
- data/docs/BaseChannelModel.md +36 -0
- data/docs/BaseChannelModelGifs.md +9 -0
- data/docs/Breadcrumb.md +10 -0
- data/docs/Category.md +11 -0
- data/docs/ChannelWithChildrenModel.md +37 -0
- data/docs/ChannelWithChildrenModelChildren.md +9 -0
- data/docs/DefaultApi.md +731 -0
- data/docs/Gif.md +36 -0
- data/docs/GifImages.md +27 -0
- data/docs/GifImagesDownsized.md +11 -0
- data/docs/GifImagesDownsizedLarge.md +11 -0
- data/docs/GifImagesDownsizedMedium.md +11 -0
- data/docs/GifImagesDownsizedSmall.md +11 -0
- data/docs/GifImagesDownsizedStill.md +10 -0
- data/docs/GifImagesFixedHeight.md +15 -0
- data/docs/GifImagesFixedHeightDownsampled.md +13 -0
- data/docs/GifImagesFixedHeightSmall.md +15 -0
- data/docs/GifImagesFixedHeightSmallStill.md +10 -0
- data/docs/GifImagesFixedHeightStill.md +10 -0
- data/docs/GifImagesFixedWidth.md +15 -0
- data/docs/GifImagesFixedWidthDownsampled.md +13 -0
- data/docs/GifImagesFixedWidthSmall.md +15 -0
- data/docs/GifImagesFixedWidthSmallStill.md +10 -0
- data/docs/GifImagesFixedWidthStill.md +10 -0
- data/docs/GifImagesLooping.md +8 -0
- data/docs/GifImagesOriginal.md +16 -0
- data/docs/GifImagesOriginalStill.md +10 -0
- data/docs/GifImagesPreview.md +11 -0
- data/docs/GifImagesPreviewGif.md +11 -0
- data/docs/InlineResponse200.md +10 -0
- data/docs/InlineResponse2001.md +9 -0
- data/docs/InlineResponse2002.md +9 -0
- data/docs/InlineResponse2003.md +10 -0
- data/docs/InlineResponse2004.md +10 -0
- data/docs/InlineResponse2005.md +10 -0
- data/docs/InlineResponse400.md +8 -0
- data/docs/LastChildModel.md +37 -0
- data/docs/LastChildModelChildren.md +9 -0
- data/docs/MetaContent.md +10 -0
- data/docs/MetaObject.md +8 -0
- data/docs/Pagination.md +10 -0
- data/docs/RandomGif.md +30 -0
- data/docs/ShallowTag.md +9 -0
- data/docs/Tag.md +9 -0
- data/docs/TrendingTag.md +10 -0
- data/docs/User.md +13 -0
- data/generate.sh +12 -0
- data/git_push.sh +55 -0
- data/lib/GiphyClient.rb +84 -0
- data/lib/GiphyClient/api/default_api.rb +952 -0
- data/lib/GiphyClient/api_client.rb +375 -0
- data/lib/GiphyClient/api_error.rb +37 -0
- data/lib/GiphyClient/configuration.rb +195 -0
- data/lib/GiphyClient/models/base_channel_model.rb +464 -0
- data/lib/GiphyClient/models/base_channel_model_gifs.rb +198 -0
- data/lib/GiphyClient/models/breadcrumb.rb +205 -0
- data/lib/GiphyClient/models/category.rb +220 -0
- data/lib/GiphyClient/models/channel_with_children_model.rb +473 -0
- data/lib/GiphyClient/models/channel_with_children_model_children.rb +198 -0
- data/lib/GiphyClient/models/gif.rb +473 -0
- data/lib/GiphyClient/models/gif_images.rb +358 -0
- data/lib/GiphyClient/models/gif_images_downsized.rb +218 -0
- data/lib/GiphyClient/models/gif_images_downsized_large.rb +218 -0
- data/lib/GiphyClient/models/gif_images_downsized_medium.rb +218 -0
- data/lib/GiphyClient/models/gif_images_downsized_small.rb +218 -0
- data/lib/GiphyClient/models/gif_images_downsized_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_fixed_height.rb +258 -0
- data/lib/GiphyClient/models/gif_images_fixed_height_downsampled.rb +238 -0
- data/lib/GiphyClient/models/gif_images_fixed_height_small.rb +258 -0
- data/lib/GiphyClient/models/gif_images_fixed_height_small_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_fixed_height_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_fixed_width.rb +258 -0
- data/lib/GiphyClient/models/gif_images_fixed_width_downsampled.rb +238 -0
- data/lib/GiphyClient/models/gif_images_fixed_width_small.rb +258 -0
- data/lib/GiphyClient/models/gif_images_fixed_width_small_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_fixed_width_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_looping.rb +188 -0
- data/lib/GiphyClient/models/gif_images_original.rb +268 -0
- data/lib/GiphyClient/models/gif_images_original_still.rb +208 -0
- data/lib/GiphyClient/models/gif_images_preview.rb +218 -0
- data/lib/GiphyClient/models/gif_images_preview_gif.rb +218 -0
- data/lib/GiphyClient/models/inline_response_200.rb +209 -0
- data/lib/GiphyClient/models/inline_response_200_1.rb +197 -0
- data/lib/GiphyClient/models/inline_response_200_2.rb +197 -0
- data/lib/GiphyClient/models/inline_response_200_3.rb +207 -0
- data/lib/GiphyClient/models/inline_response_200_4.rb +207 -0
- data/lib/GiphyClient/models/inline_response_200_5.rb +207 -0
- data/lib/GiphyClient/models/inline_response_400.rb +187 -0
- data/lib/GiphyClient/models/last_child_model.rb +473 -0
- data/lib/GiphyClient/models/last_child_model_children.rb +198 -0
- data/lib/GiphyClient/models/meta_content.rb +218 -0
- data/lib/GiphyClient/models/meta_object.rb +187 -0
- data/lib/GiphyClient/models/pagination.rb +208 -0
- data/lib/GiphyClient/models/random_gif.rb +401 -0
- data/lib/GiphyClient/models/shallow_tag.rb +198 -0
- data/lib/GiphyClient/models/tag.rb +198 -0
- data/lib/GiphyClient/models/trending_tag.rb +205 -0
- data/lib/GiphyClient/models/user.rb +238 -0
- data/lib/GiphyClient/version.rb +14 -0
- data/public.yaml +1638 -0
- data/spec/api/default_api_spec.rb +260 -0
- data/spec/api_client_spec.rb +225 -0
- data/spec/configuration_spec.rb +41 -0
- data/spec/models/base_channel_model_gifs_spec.rb +47 -0
- data/spec/models/base_channel_model_spec.rb +209 -0
- data/spec/models/breadcrumb_spec.rb +53 -0
- data/spec/models/category_spec.rb +59 -0
- data/spec/models/channel_with_children_model_children_spec.rb +47 -0
- data/spec/models/channel_with_children_model_spec.rb +215 -0
- data/spec/models/gif_images_downsized_large_spec.rb +59 -0
- data/spec/models/gif_images_downsized_medium_spec.rb +59 -0
- data/spec/models/gif_images_downsized_small_spec.rb +59 -0
- data/spec/models/gif_images_downsized_spec.rb +59 -0
- data/spec/models/gif_images_downsized_still_spec.rb +53 -0
- data/spec/models/gif_images_fixed_height_downsampled_spec.rb +71 -0
- data/spec/models/gif_images_fixed_height_small_spec.rb +83 -0
- data/spec/models/gif_images_fixed_height_small_still_spec.rb +53 -0
- data/spec/models/gif_images_fixed_height_spec.rb +83 -0
- data/spec/models/gif_images_fixed_height_still_spec.rb +53 -0
- data/spec/models/gif_images_fixed_width_downsampled_spec.rb +71 -0
- data/spec/models/gif_images_fixed_width_small_spec.rb +83 -0
- data/spec/models/gif_images_fixed_width_small_still_spec.rb +53 -0
- data/spec/models/gif_images_fixed_width_spec.rb +83 -0
- data/spec/models/gif_images_fixed_width_still_spec.rb +53 -0
- data/spec/models/gif_images_looping_spec.rb +41 -0
- data/spec/models/gif_images_original_spec.rb +89 -0
- data/spec/models/gif_images_original_still_spec.rb +53 -0
- data/spec/models/gif_images_preview_gif_spec.rb +59 -0
- data/spec/models/gif_images_preview_spec.rb +59 -0
- data/spec/models/gif_images_spec.rb +155 -0
- data/spec/models/gif_spec.rb +209 -0
- data/spec/models/inline_response_200_1_spec.rb +47 -0
- data/spec/models/inline_response_200_2_spec.rb +47 -0
- data/spec/models/inline_response_200_3_spec.rb +53 -0
- data/spec/models/inline_response_200_4_spec.rb +53 -0
- data/spec/models/inline_response_200_5_spec.rb +53 -0
- data/spec/models/inline_response_200_spec.rb +53 -0
- data/spec/models/inline_response_400_spec.rb +41 -0
- data/spec/models/last_child_model_children_spec.rb +47 -0
- data/spec/models/last_child_model_spec.rb +215 -0
- data/spec/models/meta_content_spec.rb +53 -0
- data/spec/models/meta_object_spec.rb +41 -0
- data/spec/models/pagination_spec.rb +53 -0
- data/spec/models/random_gif_spec.rb +173 -0
- data/spec/models/shallow_tag_spec.rb +47 -0
- data/spec/models/tag_spec.rb +47 -0
- data/spec/models/trending_tag_spec.rb +53 -0
- data/spec/models/user_spec.rb +71 -0
- data/spec/spec_helper.rb +110 -0
- metadata +428 -0
data/docs/Gif.md
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# GiphyClient::Gif
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**type** | **String** | By default, this is almost always gif | [optional] [default to "gif"]
|
|
7
|
+
**id** | **String** | This GIF's unique ID | [optional]
|
|
8
|
+
**slug** | **String** | The unique slug used in this GIF's URL | [optional]
|
|
9
|
+
**url** | **String** | The unique URL for this GIF | [optional]
|
|
10
|
+
**bitly_gif_url** | **String** | The unique bit.ly URL for this GIF | [optional]
|
|
11
|
+
**bitly_url** | **String** | The unique bit.ly URL for this GIF | [optional]
|
|
12
|
+
**embed_url** | **String** | A URL used for embedding this GIF | [optional]
|
|
13
|
+
**username** | **String** | The username this GIF is attached to, if applicable | [optional]
|
|
14
|
+
**source** | **String** | The page on which this GIF was found | [optional]
|
|
15
|
+
**rating** | **String** | The MPAA-style rating for this content. Examples include Y, G, PG, PG-13 and R | [optional]
|
|
16
|
+
**content_url** | **String** | Currently unused | [optional]
|
|
17
|
+
**tags** | **Array<String>** | An array of tags for this GIF (Note\\: Not available when using the Public Beta Key) | [optional]
|
|
18
|
+
**featured_tags** | **Array<String>** | An array of featured tags for this GIF (Note\\: Not available when using the Public Beta Key) | [optional]
|
|
19
|
+
**user** | [**User**](User.md) | An object containing data about the user associated with this GIF, if applicable. | [optional]
|
|
20
|
+
**source_tld** | **String** | The top level domain of the source URL. | [optional]
|
|
21
|
+
**source_post_url** | **String** | The URL of the webpage on which this GIF was found. | [optional]
|
|
22
|
+
**is_hidden** | **BOOLEAN** | Denotes whether or not this GIF is private. | [optional]
|
|
23
|
+
**is_removed** | **BOOLEAN** | Denotes whether or not this GIF has been deleted. | [optional]
|
|
24
|
+
**is_community** | **BOOLEAN** | Denotes whether or not this GIF has been uploaded by a GIPHY user. | [optional]
|
|
25
|
+
**is_anonymous** | **BOOLEAN** | Denotes whether or not this GIF has been uploaded to GIPHY by an anonymous user. | [optional]
|
|
26
|
+
**is_featured** | **BOOLEAN** | Denotes whether or not this GIF is featured on giphy.com (deprecated). | [optional]
|
|
27
|
+
**is_realtime** | **BOOLEAN** | Denotes whether or not this GIF has been sourced from a realtime crawl. | [optional]
|
|
28
|
+
**is_indexable** | **BOOLEAN** | Denotes whether or not this GIF is indexable. | [optional]
|
|
29
|
+
**is_sticker** | **BOOLEAN** | Denotes whether this GIF is a sticker (has a transparent background). | [optional]
|
|
30
|
+
**update_datetime** | **String** | The date on which this GIF was last updated. | [optional]
|
|
31
|
+
**create_datetime** | **String** | The date this GIF was added to the GIPHY database. | [optional]
|
|
32
|
+
**import_datetime** | **String** | The creation or upload date from this GIF's source. | [optional]
|
|
33
|
+
**trending_datetime** | **String** | The date on which this gif was marked trending, if applicable. | [optional]
|
|
34
|
+
**images** | [**GifImages**](GifImages.md) | | [optional]
|
|
35
|
+
|
|
36
|
+
|
data/docs/GifImages.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# GiphyClient::GifImages
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**fixed_height** | [**GifImagesFixedHeight**](GifImagesFixedHeight.md) | | [optional]
|
|
7
|
+
**fixed_height_still** | [**GifImagesFixedHeightStill**](GifImagesFixedHeightStill.md) | | [optional]
|
|
8
|
+
**fixed_height_downsampled** | [**GifImagesFixedHeightDownsampled**](GifImagesFixedHeightDownsampled.md) | | [optional]
|
|
9
|
+
**fixed_width** | [**GifImagesFixedWidth**](GifImagesFixedWidth.md) | | [optional]
|
|
10
|
+
**fixed_width_still** | [**GifImagesFixedWidthStill**](GifImagesFixedWidthStill.md) | | [optional]
|
|
11
|
+
**fixed_width_downsampled** | [**GifImagesFixedWidthDownsampled**](GifImagesFixedWidthDownsampled.md) | | [optional]
|
|
12
|
+
**fixed_height_small** | [**GifImagesFixedHeightSmall**](GifImagesFixedHeightSmall.md) | | [optional]
|
|
13
|
+
**fixed_height_small_still** | [**GifImagesFixedHeightSmallStill**](GifImagesFixedHeightSmallStill.md) | | [optional]
|
|
14
|
+
**fixed_width_small** | [**GifImagesFixedWidthSmall**](GifImagesFixedWidthSmall.md) | | [optional]
|
|
15
|
+
**fixed_width_small_still** | [**GifImagesFixedWidthSmallStill**](GifImagesFixedWidthSmallStill.md) | | [optional]
|
|
16
|
+
**downsized** | [**GifImagesDownsized**](GifImagesDownsized.md) | | [optional]
|
|
17
|
+
**downsized_still** | [**GifImagesDownsizedStill**](GifImagesDownsizedStill.md) | | [optional]
|
|
18
|
+
**downsized_large** | [**GifImagesDownsizedLarge**](GifImagesDownsizedLarge.md) | | [optional]
|
|
19
|
+
**downsized_medium** | [**GifImagesDownsizedMedium**](GifImagesDownsizedMedium.md) | | [optional]
|
|
20
|
+
**downsized_small** | [**GifImagesDownsizedSmall**](GifImagesDownsizedSmall.md) | | [optional]
|
|
21
|
+
**original** | [**GifImagesOriginal**](GifImagesOriginal.md) | | [optional]
|
|
22
|
+
**original_still** | [**GifImagesOriginalStill**](GifImagesOriginalStill.md) | | [optional]
|
|
23
|
+
**looping** | [**GifImagesLooping**](GifImagesLooping.md) | | [optional]
|
|
24
|
+
**preview** | [**GifImagesPreview**](GifImagesPreview.md) | | [optional]
|
|
25
|
+
**preview_gif** | [**GifImagesPreviewGif**](GifImagesPreviewGif.md) | | [optional]
|
|
26
|
+
|
|
27
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesDownsized
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesDownsizedLarge
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesDownsizedMedium
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesDownsizedSmall
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**mp4** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**mp4_size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesDownsizedStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedHeight
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
11
|
+
**mp4_size** | **String** | The size in bytes of the .MP4 file corresponding to this GIF. | [optional]
|
|
12
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
13
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
14
|
+
|
|
15
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedHeightDownsampled
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
11
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
12
|
+
|
|
13
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedHeightSmall
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
11
|
+
**mp4_size** | **String** | The size in bytes of the .MP4 file corresponding to this GIF. | [optional]
|
|
12
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
13
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
14
|
+
|
|
15
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedHeightSmallStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedHeightStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedWidth
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
11
|
+
**mp4_size** | **String** | The size in bytes of the .MP4 file corresponding to this GIF. | [optional]
|
|
12
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
13
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
14
|
+
|
|
15
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedWidthDownsampled
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
11
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
12
|
+
|
|
13
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedWidthSmall
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
11
|
+
**mp4_size** | **String** | The size in bytes of the .MP4 file corresponding to this GIF. | [optional]
|
|
12
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
13
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
14
|
+
|
|
15
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedWidthSmallStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesFixedWidthStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# GiphyClient::GifImagesOriginal
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this GIF in bytes. | [optional]
|
|
10
|
+
**frames** | **String** | The number of frames in this GIF. | [optional]
|
|
11
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
12
|
+
**mp4_size** | **String** | The size in bytes of the .MP4 file corresponding to this GIF. | [optional]
|
|
13
|
+
**webp** | **String** | The URL for this GIF in .webp format. | [optional]
|
|
14
|
+
**webp_size** | **String** | The size in bytes of the .webp file corresponding to this GIF. | [optional]
|
|
15
|
+
|
|
16
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::GifImagesOriginalStill
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The publicly-accessible direct URL for this GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesPreview
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**mp4** | **String** | The URL for this GIF in .MP4 format. | [optional]
|
|
7
|
+
**mp4_size** | **String** | The size of this file in bytes. | [optional]
|
|
8
|
+
**width** | **String** | The width of this file in pixels. | [optional]
|
|
9
|
+
**height** | **String** | The height of this file in pixels. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# GiphyClient::GifImagesPreviewGif
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**url** | **String** | The URL for this preview GIF. | [optional]
|
|
7
|
+
**width** | **String** | The width of this GIF in pixels. | [optional]
|
|
8
|
+
**height** | **String** | The height of this GIF in pixels. | [optional]
|
|
9
|
+
**size** | **String** | The size of this file in bytes. | [optional]
|
|
10
|
+
|
|
11
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::InlineResponse200
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**data** | [**Array<Gif>**](Gif.md) | | [optional]
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**meta** | [**MetaContent**](MetaContent.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# GiphyClient::InlineResponse2002
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**data** | [**RandomGif**](RandomGif.md) | | [optional]
|
|
7
|
+
**meta** | [**MetaContent**](MetaContent.md) | | [optional]
|
|
8
|
+
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::InlineResponse2003
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**data** | [**Array<Category>**](Category.md) | | [optional]
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**meta** | [**MetaContent**](MetaContent.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::InlineResponse2004
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**data** | [**Array<Tag>**](Tag.md) | | [optional]
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**meta** | [**MetaContent**](MetaContent.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# GiphyClient::InlineResponse2005
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**data** | [**Array<Gif>**](Gif.md) | | [optional]
|
|
7
|
+
**pagination** | [**Pagination**](Pagination.md) | | [optional]
|
|
8
|
+
**meta** | [**MetaContent**](MetaContent.md) | | [optional]
|
|
9
|
+
|
|
10
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# GiphyClient::LastChildModel
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
Name | Type | Description | Notes
|
|
5
|
+
------------ | ------------- | ------------- | -------------
|
|
6
|
+
**type** | **String** | Always \"channel\" | [optional] [default to "channel"]
|
|
7
|
+
**id** | **Integer** | 123 | [optional]
|
|
8
|
+
**parent** | **String** | parent's slug | [optional]
|
|
9
|
+
**create_datetime** | **String** | xyz | [optional]
|
|
10
|
+
**breadcrumbs** | [**Array<Breadcrumb>**](Breadcrumb.md) | | [optional]
|
|
11
|
+
**username** | **String** | xyz | [optional]
|
|
12
|
+
**slug** | **String** | | [optional]
|
|
13
|
+
**title** | **String** | xyz | [optional]
|
|
14
|
+
**short_title** | **String** | xyz | [optional]
|
|
15
|
+
**description** | **String** | xyz | [optional]
|
|
16
|
+
**featured_gif** | [**Gif**](Gif.md) | | [optional]
|
|
17
|
+
**banner_image** | **String** | xyz | [optional]
|
|
18
|
+
**avatar_image** | **String** | xyz | [optional]
|
|
19
|
+
**screensaver_gif** | [**Gif**](Gif.md) | | [optional]
|
|
20
|
+
**is_private** | **BOOLEAN** | | [optional]
|
|
21
|
+
**is_live** | **BOOLEAN** | | [optional]
|
|
22
|
+
**event_start_datetime** | **String** | xyz | [optional]
|
|
23
|
+
**event_end_datetime** | **String** | xyz | [optional]
|
|
24
|
+
**has_children** | **BOOLEAN** | | [optional]
|
|
25
|
+
**url** | **String** | xyz | [optional]
|
|
26
|
+
**website_url** | **String** | xyz | [optional]
|
|
27
|
+
**instagram_url** | **String** | xyz | [optional]
|
|
28
|
+
**twitter_url** | **String** | xyz | [optional]
|
|
29
|
+
**facebook_url** | **String** | xyz | [optional]
|
|
30
|
+
**pinterest_url** | **String** | xyz | [optional]
|
|
31
|
+
**tumblr_url** | **String** | xyz | [optional]
|
|
32
|
+
**user** | [**User**](User.md) | | [optional]
|
|
33
|
+
**trending_tags** | [**Array<TrendingTag>**](TrendingTag.md) | | [optional]
|
|
34
|
+
**gifs** | [**BaseChannelModelGifs**](BaseChannelModelGifs.md) | | [optional]
|
|
35
|
+
**children** | [**LastChildModelChildren**](LastChildModelChildren.md) | | [optional]
|
|
36
|
+
|
|
37
|
+
|