Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 835 Bytes

File metadata and controls

30 lines (21 loc) · 835 Bytes

Random

Random Resources

Properties

Name Type Description Notes
data List[RandomDataInner] [optional]

Example

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)

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