Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.06 KB

TagMetadata.md

File metadata and controls

30 lines (23 loc) · 1.06 KB

TagMetadata

Properties

Name Type Description Notes
id str [optional]
type str [optional]
content str [optional]
trans_attributes str [optional]

Example

from phrasetms_client.models.tag_metadata import TagMetadata

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

# convert the object into a dict
tag_metadata_dict = tag_metadata_instance.to_dict()
# create an instance of TagMetadata from a dict
tag_metadata_from_dict = TagMetadata.from_dict(tag_metadata_dict)

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