Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.02 KB

LabelTemplate.md

File metadata and controls

33 lines (24 loc) · 1.02 KB

LabelTemplate

LabelTemplate info of a Label template

Properties

Name Type Description Notes
color str [optional]
description str [optional]
exclusive bool [optional]
name str [optional]

Example

from clientapi_forgejo.models.label_template import LabelTemplate

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

# convert the object into a dict
label_template_dict = label_template_instance.to_dict()
# create an instance of LabelTemplate from a dict
label_template_from_dict = LabelTemplate.from_dict(label_template_dict)

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