Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.46 KB

LqaErrorCategoryDto.md

File metadata and controls

30 lines (23 loc) · 1.46 KB

LqaErrorCategoryDto

Properties

Name Type Description Notes
error_category_id int [optional]
name str [optional]
enabled bool [optional]
error_categories List[LqaErrorCategoryDto] [optional]

Example

from phrasetms_client.models.lqa_error_category_dto import LqaErrorCategoryDto

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

# convert the object into a dict
lqa_error_category_dto_dict = lqa_error_category_dto_instance.to_dict()
# create an instance of LqaErrorCategoryDto from a dict
lqa_error_category_dto_from_dict = LqaErrorCategoryDto.from_dict(lqa_error_category_dto_dict)

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