Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.15 KB

UserStatisticsListDto.md

File metadata and controls

29 lines (21 loc) · 1.15 KB

UserStatisticsListDto

envelope for user statistics

Properties

Name Type Description Notes
user_statistics List[UserStatisticsDto]

Example

from phrasetms_client.models.user_statistics_list_dto import UserStatisticsListDto

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

# convert the object into a dict
user_statistics_list_dto_dict = user_statistics_list_dto_instance.to_dict()
# create an instance of UserStatisticsListDto from a dict
user_statistics_list_dto_from_dict = UserStatisticsListDto.from_dict(user_statistics_list_dto_dict)

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