Note contains information related to a git note
| Name | Type | Description | Notes |
|---|---|---|---|
| commit | Commit | [optional] | |
| message | str | [optional] |
from openapi_client.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)