Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

GitignoreTemplateInfo.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

GitignoreTemplateInfo

GitignoreTemplateInfo name and text of a gitignore template

Properties

Name Type Description Notes
name str [optional]
source str [optional]

Example

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)

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