Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

ScoreCommentsCounts.md

File metadata and controls

33 lines (24 loc) · 1.4 KB

ScoreCommentsCounts

A computed version of the total, unique, weekly and monthly number of comments added on the documents (this doesn't include inline comments).

Properties

Name Type Description Notes
total float The total number of comments added to the score [optional]
unique float The unique (1/user) number of comments added to the score [optional]
weekly float The weekly unique number of comments added to the score [optional]
monthly float The monthly unique number of comments added to the score [optional]

Example

from flat_api.models.score_comments_counts import ScoreCommentsCounts

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

# convert the object into a dict
score_comments_counts_dict = score_comments_counts_instance.to_dict()
# create an instance of ScoreCommentsCounts from a dict
score_comments_counts_form_dict = score_comments_counts.from_dict(score_comments_counts_dict)

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