Available images in WEBP
| Name | Type | Description | Notes |
|---|---|---|---|
| image_url | str | Image URL WEBP (225x335) | [optional] |
from jikan_openapi.models.users_temp_data_inner_images_webp import UsersTempDataInnerImagesWebp
# TODO update the JSON string below
json = "{}"
# create an instance of UsersTempDataInnerImagesWebp from a JSON string
users_temp_data_inner_images_webp_instance = UsersTempDataInnerImagesWebp.from_json(json)
# print the JSON string representation of the object
print(UsersTempDataInnerImagesWebp.to_json())
# convert the object into a dict
users_temp_data_inner_images_webp_dict = users_temp_data_inner_images_webp_instance.to_dict()
# create an instance of UsersTempDataInnerImagesWebp from a dict
users_temp_data_inner_images_webp_form_dict = users_temp_data_inner_images_webp.from_dict(users_temp_data_inner_images_webp_dict)