Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.34 KB

LQAReference.md

File metadata and controls

30 lines (23 loc) · 1.34 KB

LQAReference

Properties

Name Type Description Notes
error_category_id int
severity_id int
user IdReference [optional]
repeated str Default: `NOT_REPEATED` [optional]

Example

from phrasetms_client.models.lqa_reference import LQAReference

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

# convert the object into a dict
lqa_reference_dict = lqa_reference_instance.to_dict()
# create an instance of LQAReference from a dict
lqa_reference_from_dict = LQAReference.from_dict(lqa_reference_dict)

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