Name | Type | Description | Notes |
---|---|---|---|
terminology | ToggleableWeightDto | [optional] | |
inconsistent_with_tb | ToggleableWeightDto | [optional] | |
inconsistent_use_of_terminology | ToggleableWeightDto | [optional] |
from phrasetms_client.models.terminology_weights_dto import TerminologyWeightsDto
# TODO update the JSON string below
json = "{}"
# create an instance of TerminologyWeightsDto from a JSON string
terminology_weights_dto_instance = TerminologyWeightsDto.from_json(json)
# print the JSON string representation of the object
print TerminologyWeightsDto.to_json()
# convert the object into a dict
terminology_weights_dto_dict = terminology_weights_dto_instance.to_dict()
# create an instance of TerminologyWeightsDto from a dict
terminology_weights_dto_from_dict = TerminologyWeightsDto.from_dict(terminology_weights_dto_dict)