Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 892 Bytes

File metadata and controls

29 lines (20 loc) · 892 Bytes

CommonImages

Properties

Name Type Description Notes
jpg UserImagesJpg [optional]

Example

from jikan_openapi.models.common_images import CommonImages

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

# convert the object into a dict
common_images_dict = common_images_instance.to_dict()
# create an instance of CommonImages from a dict
common_images_form_dict = common_images.from_dict(common_images_dict)

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