Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.02 KB

QASettingsDtoV2.md

File metadata and controls

27 lines (20 loc) · 1.02 KB

QASettingsDtoV2

Properties

Name Type Description Notes
checks List[QACheckDtoV2] [optional]

Example

from phrasetms_client.models.qa_settings_dto_v2 import QASettingsDtoV2

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

# convert the object into a dict
qa_settings_dto_v2_dict = qa_settings_dto_v2_instance.to_dict()
# create an instance of QASettingsDtoV2 from a dict
qa_settings_dto_v2_from_dict = QASettingsDtoV2.from_dict(qa_settings_dto_v2_dict)

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