Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 853 Bytes

File metadata and controls

29 lines (20 loc) · 853 Bytes

NoteOptions

Properties

Name Type Description Notes
message str [optional]

Example

from openapi_client.models.note_options import NoteOptions

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

# convert the object into a dict
note_options_dict = note_options_instance.to_dict()
# create an instance of NoteOptions from a dict
note_options_from_dict = NoteOptions.from_dict(note_options_dict)

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