Information for a given tag
Name | Type | Description | Notes |
---|---|---|---|
tag | List[TagSubmission] | List containing one or more submissions for a given tag | [optional] |
from pytagbase.models.tag200 import Tag200
# TODO update the JSON string below
json = "{}"
# create an instance of Tag200 from a JSON string
tag200_instance = Tag200.from_json(json)
# print the JSON string representation of the object
print Tag200.to_json()
# convert the object into a dict
tag200_dict = tag200_instance.to_dict()
# create an instance of Tag200 from a dict
tag200_form_dict = tag200.from_dict(tag200_dict)