Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.5 KB

ScoreRevision.md

File metadata and controls

37 lines (28 loc) · 1.5 KB

ScoreRevision

A score revision metadata

Properties

Name Type Description Notes
id str The unique identifier of the revision. [optional]
user str The user identifier who created the revision [optional]
collaborators List[str] [optional]
creation_date datetime The date when this revision was created [optional]
event str The last event (action id) of the revision [optional]
description str A description associated to the revision [optional]
autosave bool True if this revision was automatically generated by Flat and not on purpose by the user. [optional]
statistics ScoreRevisionStatistics [optional]

Example

from flat_api.models.score_revision import ScoreRevision

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

# convert the object into a dict
score_revision_dict = score_revision_instance.to_dict()
# create an instance of ScoreRevision from a dict
score_revision_form_dict = score_revision.from_dict(score_revision_dict)

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