Name | Type | Description | Notes |
---|---|---|---|
name | str | ||
error_categories | ErrorCategoriesDto | ||
penalty_points | PenaltyPointsDto | [optional] | |
pass_fail_threshold | PassFailThresholdDto | [optional] |
from phrasetms_client.models.update_lqa_profile_dto import UpdateLqaProfileDto
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateLqaProfileDto from a JSON string
update_lqa_profile_dto_instance = UpdateLqaProfileDto.from_json(json)
# print the JSON string representation of the object
print UpdateLqaProfileDto.to_json()
# convert the object into a dict
update_lqa_profile_dto_dict = update_lqa_profile_dto_instance.to_dict()
# create an instance of UpdateLqaProfileDto from a dict
update_lqa_profile_dto_from_dict = UpdateLqaProfileDto.from_dict(update_lqa_profile_dto_dict)