Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.09 KB

HandleNoteSignal200Response.md

File metadata and controls

29 lines (20 loc) · 1.09 KB

HandleNoteSignal200Response

Properties

Name Type Description Notes
connected bool true if the Notecard is connected to Notehub. [optional]

Example

from notehub_py.models.handle_note_signal200_response import HandleNoteSignal200Response

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

# convert the object into a dict
handle_note_signal200_response_dict = handle_note_signal200_response_instance.to_dict()
# create an instance of HandleNoteSignal200Response from a dict
handle_note_signal200_response_from_dict = HandleNoteSignal200Response.from_dict(handle_note_signal200_response_dict)

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