Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.05 KB

ConceptListReference.md

File metadata and controls

27 lines (20 loc) · 1.05 KB

ConceptListReference

Properties

Name Type Description Notes
concepts List[IdReference]

Example

from phrasetms_client.models.concept_list_reference import ConceptListReference

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

# convert the object into a dict
concept_list_reference_dict = concept_list_reference_instance.to_dict()
# create an instance of ConceptListReference from a dict
concept_list_reference_from_dict = ConceptListReference.from_dict(concept_list_reference_dict)

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