Images
| Name | Type | Description | Notes |
|---|---|---|---|
| jpg | UsersTempDataInnerImagesJpg | [optional] | |
| webp | UsersTempDataInnerImagesWebp | [optional] |
from jikan_openapi.models.users_temp_data_inner_images import UsersTempDataInnerImages
# TODO update the JSON string below
json = "{}"
# create an instance of UsersTempDataInnerImages from a JSON string
users_temp_data_inner_images_instance = UsersTempDataInnerImages.from_json(json)
# print the JSON string representation of the object
print(UsersTempDataInnerImages.to_json())
# convert the object into a dict
users_temp_data_inner_images_dict = users_temp_data_inner_images_instance.to_dict()
# create an instance of UsersTempDataInnerImages from a dict
users_temp_data_inner_images_form_dict = users_temp_data_inner_images.from_dict(users_temp_data_inner_images_dict)