LabelTemplate info of a Label template
Name | Type | Description | Notes |
---|---|---|---|
color | str | [optional] | |
description | str | [optional] | |
exclusive | bool | [optional] | |
name | str | [optional] |
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)