Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1019 Bytes

File metadata and controls

30 lines (21 loc) · 1019 Bytes

CharacterImages

Properties

Name Type Description Notes
jpg CharacterImagesJpg [optional]
webp CharacterImagesWebp [optional]

Example

from jikan_openapi.models.character_images import CharacterImages

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

# convert the object into a dict
character_images_dict = character_images_instance.to_dict()
# create an instance of CharacterImages from a dict
character_images_form_dict = character_images.from_dict(character_images_dict)

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