Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.06 KB

MetadataOptionReference.md

File metadata and controls

28 lines (21 loc) · 1.06 KB

MetadataOptionReference

Properties

Name Type Description Notes
uid str [optional]
value str [optional]

Example

from phrasetms_client.models.metadata_option_reference import MetadataOptionReference

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

# convert the object into a dict
metadata_option_reference_dict = metadata_option_reference_instance.to_dict()
# create an instance of MetadataOptionReference from a dict
metadata_option_reference_from_dict = MetadataOptionReference.from_dict(metadata_option_reference_dict)

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