Name | Type | Description | Notes |
---|---|---|---|
match100 | CountsDto | [optional] | |
match95 | CountsDto | [optional] | |
match85 | CountsDto | [optional] | |
match75 | CountsDto | [optional] | |
match50 | CountsDto | [optional] | |
match0 | CountsDto | [optional] |
from phrasetms_client.models.match_counts_dto import MatchCountsDto
# TODO update the JSON string below
json = "{}"
# create an instance of MatchCountsDto from a JSON string
match_counts_dto_instance = MatchCountsDto.from_json(json)
# print the JSON string representation of the object
print MatchCountsDto.to_json()
# convert the object into a dict
match_counts_dto_dict = match_counts_dto_instance.to_dict()
# create an instance of MatchCountsDto from a dict
match_counts_dto_from_dict = MatchCountsDto.from_dict(match_counts_dto_dict)