| Name | Type | Description | Notes |
|---|---|---|---|
| jpg | UserImagesJpg | [optional] |
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)