Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.27 KB

File metadata and controls

40 lines (31 loc) · 1.27 KB

License

A license record describing terms under which a dataset/tool may be accessed

Properties

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]

Example

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)

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