A license record describing terms under which a dataset/tool may be accessed
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| code | str | [optional] | |
| label | str | [optional] | |
| valid_since | datetime | [optional] | |
| valid_until | datetime | [optional] | |
| definition | str | [optional] | |
| verified | bool | [optional] | |
| origin | str | [optional] | |
| created_at | datetime | [optional] | |
| updated_at | datetime | [optional] | |
| deleted_at | datetime | [optional] |
from gateway_api_sdk.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_from_dict = License.from_dict(license_dict)