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