Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.45 KB

MatchCounts101Dto.md

File metadata and controls

33 lines (26 loc) · 1.45 KB

MatchCounts101Dto

Properties

Name Type Description Notes
match100 CountsDto [optional]
match95 CountsDto [optional]
match85 CountsDto [optional]
match75 CountsDto [optional]
match50 CountsDto [optional]
match0 CountsDto [optional]
match101 CountsDto [optional]

Example

from phrasetms_client.models.match_counts101_dto import MatchCounts101Dto

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

# convert the object into a dict
match_counts101_dto_dict = match_counts101_dto_instance.to_dict()
# create an instance of MatchCounts101Dto from a dict
match_counts101_dto_from_dict = MatchCounts101Dto.from_dict(match_counts101_dto_dict)

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