Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.31 KB

File metadata and controls

31 lines (24 loc) · 1.31 KB

GetDbNote200Response

Properties

Name Type Description Notes
body object The note body [optional]
payload str The note payload [optional]
time int The time the Note was added to the Notecard or Notehub [optional]

Example

from notehub_py.models.get_db_note200_response import GetDbNote200Response

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

# convert the object into a dict
get_db_note200_response_dict = get_db_note200_response_instance.to_dict()
# create an instance of GetDbNote200Response from a dict
get_db_note200_response_from_dict = GetDbNote200Response.from_dict(
    get_db_note200_response_dict
)

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