Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.22 KB

IssueTemplate.md

File metadata and controls

37 lines (28 loc) · 1.22 KB

IssueTemplate

IssueTemplate represents an issue template for a repository

Properties

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]

Example

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)

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