Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 969 Bytes

IssueConfig.md

File metadata and controls

30 lines (21 loc) · 969 Bytes

IssueConfig

Properties

Name Type Description Notes
blank_issues_enabled bool [optional]
contact_links List[IssueConfigContactLink] [optional]

Example

from clientapi_forgejo.models.issue_config import IssueConfig

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

# convert the object into a dict
issue_config_dict = issue_config_instance.to_dict()
# create an instance of IssueConfig from a dict
issue_config_from_dict = IssueConfig.from_dict(issue_config_dict)

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