Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.13 KB

LicensesTemplateListEntry.md

File metadata and controls

32 lines (23 loc) · 1.13 KB

LicensesTemplateListEntry

LicensesListEntry is used for the API

Properties

Name Type Description Notes
key str [optional]
name str [optional]
url str [optional]

Example

from clientapi_forgejo.models.licenses_template_list_entry import LicensesTemplateListEntry

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

# convert the object into a dict
licenses_template_list_entry_dict = licenses_template_list_entry_instance.to_dict()
# create an instance of LicensesTemplateListEntry from a dict
licenses_template_list_entry_from_dict = LicensesTemplateListEntry.from_dict(licenses_template_list_entry_dict)

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