Name | Type | Description | Notes |
---|---|---|---|
uid | str |
from phrasetms_client.models.uid_reference import UidReference
# TODO update the JSON string below
json = "{}"
# create an instance of UidReference from a JSON string
uid_reference_instance = UidReference.from_json(json)
# print the JSON string representation of the object
print UidReference.to_json()
# convert the object into a dict
uid_reference_dict = uid_reference_instance.to_dict()
# create an instance of UidReference from a dict
uid_reference_from_dict = UidReference.from_dict(uid_reference_dict)