Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

ScoreViewsCounts.md

File metadata and controls

32 lines (23 loc) · 1.17 KB

ScoreViewsCounts

A computed version of the total, weekly, and monthly number of views of the score

Properties

Name Type Description Notes
total float The total number of views of the score [optional]
weekly float The weekly number of views of the score [optional]
monthly float The monthly number of views of the score [optional]

Example

from flat_api.models.score_views_counts import ScoreViewsCounts

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

# convert the object into a dict
score_views_counts_dict = score_views_counts_instance.to_dict()
# create an instance of ScoreViewsCounts from a dict
score_views_counts_form_dict = score_views_counts.from_dict(score_views_counts_dict)

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