Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 823 Bytes

File metadata and controls

30 lines (21 loc) · 823 Bytes

Title

Properties

Name Type Description Notes
type str Title type [optional]
title str Title value [optional]

Example

from jikan_openapi.models.title import Title

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

# convert the object into a dict
title_dict = title_instance.to_dict()
# create an instance of Title from a dict
title_form_dict = title.from_dict(title_dict)

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