Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 940 Bytes

File metadata and controls

30 lines (21 loc) · 940 Bytes

UserImagesWebp

Available images in WEBP

Properties

Name Type Description Notes
image_url str Image URL WEBP [optional]

Example

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)

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