Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.06 KB

File metadata and controls

32 lines (23 loc) · 1.06 KB

AnnotatedTagObject

AnnotatedTagObject contains meta information of the tag object

Properties

Name Type Description Notes
sha str [optional]
type str [optional]
url str [optional]

Example

from clientapi_forgejo.models.annotated_tag_object import AnnotatedTagObject

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

# convert the object into a dict
annotated_tag_object_dict = annotated_tag_object_instance.to_dict()
# create an instance of AnnotatedTagObject from a dict
annotated_tag_object_from_dict = AnnotatedTagObject.from_dict(annotated_tag_object_dict)

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