Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 1.25 KB

LqaSettingsDto.md

File metadata and controls

29 lines (22 loc) · 1.25 KB

LqaSettingsDto

Properties

Name Type Description Notes
enabled bool [optional]
severities List[LqaSeverityDto] [optional]
categories List[LqaErrorCategoryDto] [optional]

Example

from phrasetms_client.models.lqa_settings_dto import LqaSettingsDto

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

# convert the object into a dict
lqa_settings_dto_dict = lqa_settings_dto_instance.to_dict()
# create an instance of LqaSettingsDto from a dict
lqa_settings_dto_from_dict = LqaSettingsDto.from_dict(lqa_settings_dto_dict)

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