Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 884 Bytes

File metadata and controls

29 lines (20 loc) · 884 Bytes

UserUpdates

Properties

Name Type Description Notes
data UserUpdatesData [optional]

Example

from jikan_openapi.models.user_updates import UserUpdates

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

# convert the object into a dict
user_updates_dict = user_updates_instance.to_dict()
# create an instance of UserUpdates from a dict
user_updates_form_dict = user_updates.from_dict(user_updates_dict)

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