Magazine Resource
| Name | Type | Description | Notes |
|---|---|---|---|
| mal_id | int | MyAnimeList ID | [optional] |
| name | str | Magazine Name | [optional] |
| url | str | MyAnimeList URL | [optional] |
| count | int | Magazine's manga count | [optional] |
from jikan_openapi.models.magazine import Magazine
# TODO update the JSON string below
json = "{}"
# create an instance of Magazine from a JSON string
magazine_instance = Magazine.from_json(json)
# print the JSON string representation of the object
print(Magazine.to_json())
# convert the object into a dict
magazine_dict = magazine_instance.to_dict()
# create an instance of Magazine from a dict
magazine_form_dict = magazine.from_dict(magazine_dict)