Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 858 Bytes

File metadata and controls

31 lines (22 loc) · 858 Bytes

Note

Note contains information related to a git note

Properties

Name Type Description Notes
commit Commit [optional]
message str [optional]

Example

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)

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