Error categories and their importance weight. If not provided, defaults will be created.
Name | Type | Description | Notes |
---|---|---|---|
accuracy | AccuracyWeightsDto | [optional] | |
fluency | FluencyWeightsDto | [optional] | |
terminology | TerminologyWeightsDto | [optional] | |
style | StyleWeightsDto | [optional] | |
locale_convention | LocaleConventionWeightsDto | [optional] | |
verity | VerityWeightsDto | [optional] | |
design | DesignWeightsDto | [optional] | |
other | OtherWeightsDto | [optional] |
from phrasetms_client.models.error_categories_dto import ErrorCategoriesDto
# TODO update the JSON string below
json = "{}"
# create an instance of ErrorCategoriesDto from a JSON string
error_categories_dto_instance = ErrorCategoriesDto.from_json(json)
# print the JSON string representation of the object
print ErrorCategoriesDto.to_json()
# convert the object into a dict
error_categories_dto_dict = error_categories_dto_instance.to_dict()
# create an instance of ErrorCategoriesDto from a dict
error_categories_dto_from_dict = ErrorCategoriesDto.from_dict(error_categories_dto_dict)