Name | Type | Description | Notes |
---|---|---|---|
available | bool | [optional] | |
estimate | bool | [optional] | |
all | CountsDto | [optional] | |
repetitions | CountsDto | [optional] | |
trans_memory_matches | MatchCounts101Dto | [optional] | |
machine_translation_matches | MatchCountsDto | [optional] | |
non_translatables_matches | MatchCountsNTDto | [optional] | |
internal_fuzzy_matches | MatchCountsDto | [optional] |
from phrasetms_client.models.data_dto import DataDto
# TODO update the JSON string below
json = "{}"
# create an instance of DataDto from a JSON string
data_dto_instance = DataDto.from_json(json)
# print the JSON string representation of the object
print DataDto.to_json()
# convert the object into a dict
data_dto_dict = data_dto_instance.to_dict()
# create an instance of DataDto from a dict
data_dto_from_dict = DataDto.from_dict(data_dto_dict)