Random Resources
| Name | Type | Description | Notes |
|---|---|---|---|
| data | List[RandomDataInner] | [optional] |
from jikan_openapi.models.random import Random
# TODO update the JSON string below
json = "{}"
# create an instance of Random from a JSON string
random_instance = Random.from_json(json)
# print the JSON string representation of the object
print(Random.to_json())
# convert the object into a dict
random_dict = random_instance.to_dict()
# create an instance of Random from a dict
random_form_dict = random.from_dict(random_dict)