Skip to content

Latest commit

 

History

History
executable file
·
34 lines (25 loc) · 1.03 KB

License.md

File metadata and controls

executable file
·
34 lines (25 loc) · 1.03 KB

License

Properties

Name Type Description Notes
id str [optional] [readonly]
active bool [optional]
display_name str
description str [optional]
environment List[EnvVar] [optional] [readonly]
application Application [optional]

Example

from epiccore.models.license import License

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

# convert the object into a dict
license_dict = license_instance.to_dict()
# create an instance of License from a dict
license_form_dict = license.from_dict(license_dict)

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