Skip to content

Latest commit

History

History
33 lines (24 loc) 路 1.41 KB

ScoreRevisionStatistics.md

File metadata and controls

33 lines (24 loc) 路 1.41 KB

ScoreRevisionStatistics

The statistics related to the score revision (additions and deletions)

Properties

Name Type Description Notes
additions float The number of additions operations in the last revision [optional]
deletions float The number of deletions operations in the last revision [optional]
start_date datetime The date of the first action included in this revision [optional]
end_date datetime The date of the latest action included in this revision [optional]

Example

from flat_api.models.score_revision_statistics import ScoreRevisionStatistics

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

# convert the object into a dict
score_revision_statistics_dict = score_revision_statistics_instance.to_dict()
# create an instance of ScoreRevisionStatistics from a dict
score_revision_statistics_form_dict = score_revision_statistics.from_dict(score_revision_statistics_dict)

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