Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.37 KB

MatchCountsNTDto.md

File metadata and controls

32 lines (25 loc) · 1.37 KB

MatchCountsNTDto

Properties

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

Example

from phrasetms_client.models.match_counts_nt_dto import MatchCountsNTDto

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

# convert the object into a dict
match_counts_nt_dto_dict = match_counts_nt_dto_instance.to_dict()
# create an instance of MatchCountsNTDto from a dict
match_counts_nt_dto_from_dict = MatchCountsNTDto.from_dict(match_counts_nt_dto_dict)

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