Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 2.05 KB

ErrorCategoriesDto.md

File metadata and controls

36 lines (28 loc) · 2.05 KB

ErrorCategoriesDto

Error categories and their importance weight. If not provided, defaults will be created.

Properties

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]

Example

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)

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