Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1008 Bytes

File metadata and controls

30 lines (21 loc) · 1008 Bytes

GifSearchResponse

Properties

Name Type Description Notes
images List[List[GifSearchResponseImagesInnerInner]]
status APIStatus

Example

from client.models.gif_search_response import GifSearchResponse

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

# convert the object into a dict
gif_search_response_dict = gif_search_response_instance.to_dict()
# create an instance of GifSearchResponse from a dict
gif_search_response_from_dict = GifSearchResponse.from_dict(gif_search_response_dict)

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