Name | Type | Description | Notes |
---|---|---|---|
id | str |
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)