IssueTemplate represents an issue template for a repository
Name | Type | Description | Notes |
---|---|---|---|
about | str | [optional] | |
body | List[IssueFormField] | [optional] | |
content | str | [optional] | |
file_name | str | [optional] | |
labels | List[str] | [optional] | |
name | str | [optional] | |
ref | str | [optional] | |
title | str | [optional] |
from clientapi_forgejo.models.issue_template import IssueTemplate
# TODO update the JSON string below
json = "{}"
# create an instance of IssueTemplate from a JSON string
issue_template_instance = IssueTemplate.from_json(json)
# print the JSON string representation of the object
print(IssueTemplate.to_json())
# convert the object into a dict
issue_template_dict = issue_template_instance.to_dict()
# create an instance of IssueTemplate from a dict
issue_template_from_dict = IssueTemplate.from_dict(issue_template_dict)