Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 839 Bytes

IdReference.md

File metadata and controls

27 lines (20 loc) · 839 Bytes

IdReference

Properties

Name Type Description Notes
id str

Example

from phrasetms_client.models.id_reference import IdReference

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

# convert the object into a dict
id_reference_dict = id_reference_instance.to_dict()
# create an instance of IdReference from a dict
id_reference_from_dict = IdReference.from_dict(id_reference_dict)

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