Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 934 Bytes

File metadata and controls

30 lines (21 loc) · 934 Bytes

UserImages

Properties

Name Type Description Notes
jpg UserImagesJpg [optional]
webp UserImagesWebp [optional]

Example

from jikan_openapi.models.user_images import UserImages

# TODO update the JSON string below
json = "{}"
# create an instance of UserImages from a JSON string
user_images_instance = UserImages.from_json(json)
# print the JSON string representation of the object
print(UserImages.to_json())

# convert the object into a dict
user_images_dict = user_images_instance.to_dict()
# create an instance of UserImages from a dict
user_images_form_dict = user_images.from_dict(user_images_dict)

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