GitignoreTemplateInfo name and text of a gitignore template
Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
source | str | [optional] |
from clientapi_forgejo.models.gitignore_template_info import GitignoreTemplateInfo
# TODO update the JSON string below
json = "{}"
# create an instance of GitignoreTemplateInfo from a JSON string
gitignore_template_info_instance = GitignoreTemplateInfo.from_json(json)
# print the JSON string representation of the object
print(GitignoreTemplateInfo.to_json())
# convert the object into a dict
gitignore_template_info_dict = gitignore_template_info_instance.to_dict()
# create an instance of GitignoreTemplateInfo from a dict
gitignore_template_info_from_dict = GitignoreTemplateInfo.from_dict(gitignore_template_info_dict)