Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

LicenseTemplateInfo

LicensesInfo contains information about a License

Properties

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

Example

from openapi_client.models.license_template_info import LicenseTemplateInfo

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

# convert the object into a dict
license_template_info_dict = license_template_info_instance.to_dict()
# create an instance of LicenseTemplateInfo from a dict
license_template_info_from_dict = LicenseTemplateInfo.from_dict(license_template_info_dict)

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