Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 791 Bytes

Note.md

File metadata and controls

30 lines (21 loc) · 791 Bytes

Note

Properties

Name Type Description Notes
body object [optional]
payload str [optional]

Example

from notehub_py.models.note import Note

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

# convert the object into a dict
note_dict = note_instance.to_dict()
# create an instance of Note from a dict
note_from_dict = Note.from_dict(note_dict)

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