Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 775 Bytes

File metadata and controls

27 lines (20 loc) · 775 Bytes

Body

Properties

Name Type Description Notes
body object [optional]

Example

from notehub_py.models.body import Body

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

# convert the object into a dict
body_dict = body_instance.to_dict()
# create an instance of Body from a dict
body_from_dict = Body.from_dict(body_dict)

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