Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

GetGifsTrendingResponse

Properties

Name Type Description Notes
images List[List[GifSearchResponseImagesInnerInner]] [optional]
status APIStatus
code str [optional]

Example

from client.models.get_gifs_trending_response import GetGifsTrendingResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GetGifsTrendingResponse from a JSON string
get_gifs_trending_response_instance = GetGifsTrendingResponse.from_json(json)
# print the JSON string representation of the object
print(GetGifsTrendingResponse.to_json())

# convert the object into a dict
get_gifs_trending_response_dict = get_gifs_trending_response_instance.to_dict()
# create an instance of GetGifsTrendingResponse from a dict
get_gifs_trending_response_from_dict = GetGifsTrendingResponse.from_dict(get_gifs_trending_response_dict)

[Back to Model list] [Back to API list] [Back to README]