A computed version of the total, weekly, and monthly number of plays of the score
Name | Type | Description | Notes |
---|---|---|---|
total | float | The total number of plays of the score | [optional] |
weekly | float | The weekly number of plays of the score | [optional] |
monthly | float | The monthly number of plays of the score | [optional] |
from flat_api.models.score_plays_counts import ScorePlaysCounts
# TODO update the JSON string below
json = "{}"
# create an instance of ScorePlaysCounts from a JSON string
score_plays_counts_instance = ScorePlaysCounts.from_json(json)
# print the JSON string representation of the object
print ScorePlaysCounts.to_json()
# convert the object into a dict
score_plays_counts_dict = score_plays_counts_instance.to_dict()
# create an instance of ScorePlaysCounts from a dict
score_plays_counts_form_dict = score_plays_counts.from_dict(score_plays_counts_dict)