Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.19 KB

LqaProfilesForWsV2Dto.md

File metadata and controls

28 lines (21 loc) · 1.19 KB

LqaProfilesForWsV2Dto

Properties

Name Type Description Notes
workflow_step IdReference [optional]
lqa_profile UidReference [optional]

Example

from phrasetms_client.models.lqa_profiles_for_ws_v2_dto import LqaProfilesForWsV2Dto

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

# convert the object into a dict
lqa_profiles_for_ws_v2_dto_dict = lqa_profiles_for_ws_v2_dto_instance.to_dict()
# create an instance of LqaProfilesForWsV2Dto from a dict
lqa_profiles_for_ws_v2_dto_from_dict = LqaProfilesForWsV2Dto.from_dict(lqa_profiles_for_ws_v2_dto_dict)

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