A score revision metadata
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] |
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)