Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 890 Bytes

Tag200.md

File metadata and controls

29 lines (21 loc) · 890 Bytes

Tag200

Information for a given tag

Properties

Name Type Description Notes
tag List[TagSubmission] List containing one or more submissions for a given tag [optional]

Example

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)

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