Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

LinkTagsInner

Properties

Name Type Description Notes
id UUID ID [optional]
name str Name [optional]

Example

from urlr.models.link_tags_inner import LinkTagsInner

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

# convert the object into a dict
link_tags_inner_dict = link_tags_inner_instance.to_dict()
# create an instance of LinkTagsInner from a dict
link_tags_inner_from_dict = LinkTagsInner.from_dict(link_tags_inner_dict)

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