Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 972 Bytes

LQA.md

File metadata and controls

28 lines (21 loc) · 972 Bytes

LQA

Properties

Name Type Description Notes
references LQAReferences [optional]
lqa_description str [optional]

Example

from phrasetms_client.models.lqa import LQA

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

# convert the object into a dict
lqa_dict = lqa_instance.to_dict()
# create an instance of LQA from a dict
lqa_from_dict = LQA.from_dict(lqa_dict)

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